:root {
  --ink: #2d1638;
  --ink-soft: #5b4863;
  --plum: #5d3274;
  --violet: #7c4dad;
  --violet-bright: #9767c7;
  --lavender: #dcc9f3;
  --lavender-soft: #f0e7f8;
  --ivory: #fff9f3;
  --paper: #fffdf9;
  --coral: #f39a8b;
  --coral-deep: #dc7669;
  --mint: #90c9b4;
  --line: rgba(67, 39, 78, 0.13);
  --shadow-sm: 0 14px 34px rgba(64, 33, 79, 0.09);
  --shadow-lg: 0 34px 90px rgba(62, 32, 78, 0.16);
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body::selection {
  color: white;
  background: var(--violet);
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

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

.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;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(255, 249, 243, 0.9);
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(66, 39, 77, 0.05);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: white;
  background: var(--ink);
  border-radius: 50% 50% 46% 54% / 55% 44% 56% 45%;
  font-size: 1.05rem;
  font-style: italic;
  box-shadow: 0 6px 18px rgba(45, 22, 56, 0.18);
}

.brand-dot {
  align-self: flex-end;
  width: 6px;
  height: 6px;
  margin: 0 0 5px -5px;
  background: var(--coral);
  border-radius: 50%;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.86rem;
  font-weight: 650;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
}

.site-nav a:not(.nav-github)::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--violet);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.nav-github:hover {
  background: var(--violet);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

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

.hero {
  position: relative;
  min-height: 850px;
  padding: 150px 0 110px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 44%, rgba(220, 201, 243, 0.72), transparent 30%),
    linear-gradient(135deg, #fffaf5 0%, #fff8f2 44%, #f5ebfa 100%);
}

.hero::after {
  position: absolute;
  right: -5%;
  bottom: -210px;
  left: -5%;
  height: 300px;
  content: "";
  background: var(--paper);
  border-radius: 50% 50% 0 0 / 30% 30% 0 0;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 72px;
  align-items: center;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 24px;
  color: var(--violet);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  max-width: 700px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4.7rem, 8vw, 7.8rem);
  font-weight: 500;
  line-height: 0.84;
  letter-spacing: -0.075em;
}

.hero-tagline {
  margin: 26px 0 18px;
  color: var(--violet);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.hero-description {
  max-width: 610px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 750;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

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

.button-primary {
  color: white;
  background: var(--ink);
  box-shadow: 0 15px 28px rgba(45, 22, 56, 0.16);
}

.button-primary:hover {
  background: var(--violet);
  box-shadow: 0 18px 34px rgba(87, 47, 109, 0.2);
}

.button-quiet {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.48);
}

.button-quiet:hover {
  border-color: rgba(124, 77, 173, 0.3);
  background: white;
}

.hero-proof {
  display: flex;
  gap: 28px;
  margin-top: 44px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.hero-proof div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hero-proof strong {
  font-family: var(--serif);
  font-size: 0.98rem;
}

.hero-proof span {
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.hero-visual {
  position: relative;
  min-height: 610px;
}

.violet-card {
  position: absolute;
  z-index: 4;
  top: 32px;
  left: 50%;
  width: min(440px, 82%);
  margin: 0;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(70, 38, 84, 0.16);
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
  transform: translateX(-50%) rotate(1.5deg);
}

.violet-card::after {
  position: absolute;
  inset: 54px 0 76px;
  content: "";
  pointer-events: none;
  box-shadow: inset 0 0 80px rgba(76, 42, 91, 0.08);
}

.violet-card-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.9);
}

.violet-card-bar > span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 700;
}

.violet-card-bar b {
  width: 7px;
  height: 7px;
  background: #6ec6a1;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(110, 198, 161, 0.16);
}

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

.window-dots i {
  width: 7px;
  height: 7px;
  background: var(--lavender);
  border-radius: 50%;
}

.window-dots i:first-child {
  background: var(--coral);
}

.violet-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.violet-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 17px 20px 19px;
}

.violet-card figcaption span {
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 700;
}

.violet-card figcaption small {
  color: var(--ink-soft);
  font-size: 0.73rem;
}

.orbit {
  position: absolute;
  z-index: 1;
  top: 48%;
  left: 50%;
  border: 1px solid rgba(124, 77, 173, 0.22);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-one {
  width: 550px;
  height: 550px;
}

.orbit-two {
  width: 680px;
  height: 680px;
  border-style: dashed;
  opacity: 0.52;
}

.floating-card {
  position: absolute;
  z-index: 7;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255, 253, 249, 0.94);
  border: 1px solid rgba(69, 38, 83, 0.13);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.floating-card div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.floating-card small {
  color: var(--ink-soft);
  font-size: 0.67rem;
}

.floating-card strong {
  font-size: 0.86rem;
}

.float-spend {
  top: 128px;
  right: -22px;
  animation: float 5.5s ease-in-out infinite;
}

.float-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: white;
  background: var(--violet);
  border-radius: 11px;
}

.float-good {
  margin-left: 4px;
  padding: 5px 8px;
  color: #2d7a60;
  background: #e2f3ec;
  border-radius: 999px;
  font-size: 0.6rem;
  font-weight: 750;
}

.float-capture {
  bottom: 68px;
  left: -34px;
  animation: float 6.4s 600ms ease-in-out infinite;
}

.capture-check {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: white;
  background: var(--coral);
  border-radius: 50%;
  font-weight: 900;
}

.coin {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: white;
  background: var(--violet);
  border: 5px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  box-shadow: 0 12px 24px rgba(71, 37, 88, 0.16);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
}

.coin-one {
  right: 24px;
  bottom: 117px;
  transform: rotate(12deg);
}

.coin-two {
  top: 56px;
  left: 12px;
  color: var(--ink);
  background: var(--coral);
  transform: rotate(-16deg);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
}

.hero-glow-one {
  top: 120px;
  right: 9%;
  width: 380px;
  height: 380px;
  background: rgba(233, 210, 250, 0.4);
}

.hero-glow-two {
  bottom: 60px;
  left: 4%;
  width: 220px;
  height: 220px;
  background: rgba(243, 154, 139, 0.12);
}

.petal,
.cta-petal {
  position: absolute;
  width: 30px;
  height: 17px;
  background: linear-gradient(135deg, var(--lavender), var(--violet-bright));
  border-radius: 100% 0 100% 0;
  opacity: 0.62;
}

.petal-one {
  top: 160px;
  left: 47%;
  transform: rotate(24deg);
}

.petal-two {
  right: 6%;
  bottom: 160px;
  transform: rotate(-35deg) scale(0.8);
}

.petal-three {
  bottom: 220px;
  left: 8%;
  transform: rotate(62deg) scale(0.58);
}

.origin-section {
  position: relative;
  z-index: 3;
  padding: 70px 0 120px;
  background: var(--paper);
}

.origin-grid {
  display: grid;
  grid-template-columns: 0.28fr 1fr;
  gap: 72px;
}

.section-label {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-top: 14px;
}

.section-label span {
  color: var(--violet);
  font-family: var(--serif);
  font-size: 0.82rem;
  font-style: italic;
}

.section-label p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.origin-copy blockquote {
  max-width: 850px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.05rem, 4vw, 3.55rem);
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: -0.04em;
}

.origin-byline {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  max-width: 850px;
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.aniket-avatar {
  display: block;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  overflow: hidden;
  background: var(--lavender-soft);
  border: 2px solid white;
  border-radius: 50%;
  box-shadow: 0 7px 18px rgba(62, 32, 78, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.aniket-avatar:hover {
  box-shadow: 0 10px 24px rgba(62, 32, 78, 0.22);
  transform: translateY(-2px);
}

.aniket-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.origin-byline > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.origin-byline strong {
  font-size: 0.86rem;
}

.origin-byline span {
  color: var(--ink-soft);
  font-size: 0.73rem;
}

.origin-byline .builder-link {
  color: var(--violet);
  font-size: 0.78rem;
  font-weight: 750;
}

.flow-section,
.features-section {
  padding: 120px 0;
  background: #faf3ee;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 56px;
}

.section-heading h2,
.demo-copy h2,
.under-grid h2,
.cta-card h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.section-heading > p:last-child,
.demo-copy > p,
.under-grid > div:first-child > p {
  max-width: 640px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.72;
}

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

.flow-card {
  position: relative;
  min-height: 430px;
  padding: 28px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: 0 14px 40px rgba(65, 34, 78, 0.05);
}

.flow-card::after {
  position: absolute;
  right: -80px;
  bottom: -90px;
  width: 200px;
  height: 200px;
  content: "";
  background: var(--lavender-soft);
  border-radius: 50%;
}

.flow-number {
  margin-bottom: 70px;
  color: var(--violet);
  font-family: var(--serif);
  font-size: 0.8rem;
  font-style: italic;
}

.flow-card h3,
.feature-card h3 {
  position: relative;
  z-index: 2;
  margin: 28px 0 10px;
  font-family: var(--serif);
  font-size: 1.8rem;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.flow-card > p,
.feature-card > p,
.feature-card > div > p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.65;
}

.mini-mail {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 18px;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(57, 28, 69, 0.06);
  transform: rotate(-2deg);
}

.mini-mail .mail-sender,
.mini-mail span:last-child {
  color: var(--ink-soft);
  font-size: 0.65rem;
}

.mini-mail strong {
  font-size: 0.87rem;
}

.meaning-stack {
  position: relative;
  height: 105px;
}

.meaning-stack span {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  color: var(--plum);
  background: var(--lavender-soft);
  border: 1px solid rgba(124, 77, 173, 0.14);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 750;
}

.meaning-stack span:nth-child(1) {
  top: 0;
  left: 6px;
}

.meaning-stack span:nth-child(2) {
  top: 39px;
  left: 62px;
  color: #9c5148;
  background: #fff0ec;
  border-color: rgba(220, 118, 105, 0.15);
}

.meaning-stack span:nth-child(3) {
  top: 77px;
  left: 20px;
  color: #2d755d;
  background: #e9f5f0;
  border-color: rgba(63, 139, 110, 0.14);
}

.mini-bubbles {
  display: flex;
  min-height: 105px;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.mini-bubbles span {
  max-width: 88%;
  padding: 11px 14px;
  background: var(--lavender-soft);
  border-radius: 15px 15px 4px 15px;
  font-size: 0.7rem;
  font-weight: 700;
}

.mini-bubbles span:last-child {
  align-self: flex-start;
  color: white;
  background: var(--violet);
  border-radius: 15px 15px 15px 4px;
}

.demo-section {
  position: relative;
  padding: 130px 0;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 80% 42%, rgba(151, 103, 199, 0.34), transparent 32%),
    var(--ink);
}

.demo-section::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.4) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to right, black, transparent 48%);
}

.demo-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 86px;
  align-items: center;
}

.eyebrow-light {
  color: var(--lavender);
}

.demo-copy > p {
  color: rgba(255, 255, 255, 0.68);
}

.demo-tabs {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 42px;
}

.demo-tab {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  max-width: 390px;
  min-height: 52px;
  padding: 0 16px;
  color: rgba(255, 255, 255, 0.58);
  text-align: left;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.demo-tab span {
  color: var(--coral);
  font-family: var(--serif);
  font-size: 0.72rem;
  font-style: italic;
}

.demo-tab:hover,
.demo-tab.is-active {
  color: white;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.1);
}

.phone-wrap {
  position: relative;
  display: grid;
  min-height: 715px;
  place-items: center;
}

.phone-halo {
  position: absolute;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(151, 103, 199, 0.34), transparent 64%);
  border-radius: 50%;
}

.phone {
  position: relative;
  z-index: 2;
  width: min(430px, 100%);
  min-height: 690px;
  overflow: hidden;
  color: var(--ink);
  background: #f4ecf7;
  border: 8px solid #1c1022;
  border-radius: 42px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.34);
}

.phone::before {
  position: absolute;
  z-index: 5;
  top: 7px;
  left: 50%;
  width: 96px;
  height: 20px;
  content: "";
  background: #1c1022;
  border-radius: 0 0 16px 16px;
  transform: translateX(-50%);
}

.phone-top {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 82px;
  padding: 22px 16px 10px;
  background: rgba(255, 253, 249, 0.92);
  box-shadow: 0 1px 0 var(--line);
}

.phone-top img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border: 2px solid white;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(58, 29, 70, 0.18);
}

.phone-top > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.phone-top strong {
  font-family: var(--serif);
  font-size: 0.98rem;
}

.phone-top div span {
  color: var(--ink-soft);
  font-size: 0.64rem;
}

.phone-back {
  font-size: 1.8rem;
}

.phone-menu {
  margin-left: auto;
  letter-spacing: 0.08em;
}

.conversation {
  min-height: 538px;
  padding: 14px 14px 80px;
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.7), transparent 25%),
    linear-gradient(145deg, #f8f0f9, #efe4f4);
}

.conversation.is-active {
  animation: conversation-in 240ms ease both;
}

.chat-day {
  width: fit-content;
  margin: 2px auto 15px;
  padding: 4px 9px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  font-size: 0.57rem;
  font-weight: 700;
}

.message {
  display: flex;
  width: fit-content;
  max-width: 84%;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 9px;
  padding: 11px 13px 8px;
  border-radius: 16px;
  font-size: 0.74rem;
  line-height: 1.48;
  box-shadow: 0 5px 16px rgba(65, 35, 77, 0.07);
}

.message small {
  align-self: flex-end;
  color: rgba(65, 47, 70, 0.56);
  font-size: 0.54rem;
}

.message-violet {
  background: white;
  border-radius: 16px 16px 16px 5px;
}

.message-user {
  margin-left: auto;
  color: white;
  background: var(--violet);
  border-radius: 16px 16px 5px 16px;
}

.message-user small {
  color: rgba(255, 255, 255, 0.62);
}

.message-label {
  color: var(--violet);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.context-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  margin: 14px auto 0;
  padding: 7px 11px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.67);
  border: 1px solid rgba(70, 42, 80, 0.08);
  border-radius: 999px;
  font-size: 0.57rem;
  font-weight: 650;
}

.context-pill span {
  color: var(--violet);
  font-weight: 900;
}

.budget-card,
.balance-card {
  margin: 10px 0;
  padding: 14px;
  background: white;
  border: 1px solid rgba(78, 43, 92, 0.1);
  border-radius: 17px;
  box-shadow: 0 8px 20px rgba(63, 33, 75, 0.08);
}

.budget-card > div:first-child,
.balance-card > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.budget-card span,
.balance-card span {
  color: var(--ink-soft);
  font-size: 0.63rem;
}

.budget-card strong,
.balance-card strong {
  font-family: var(--serif);
  font-size: 0.86rem;
}

.budget-track {
  height: 7px;
  margin: 11px 0 7px;
  overflow: hidden;
  background: var(--lavender-soft);
  border-radius: 999px;
}

.budget-track i {
  display: block;
  width: 61%;
  height: 100%;
  background: linear-gradient(90deg, var(--violet), var(--coral));
  border-radius: inherit;
}

.budget-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.56rem;
}

.balance-card > div {
  padding: 5px 0;
}

.balance-card hr {
  margin: 7px 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.balance-card .balance-total strong {
  color: var(--violet);
}

.phone-compose {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 10px 0 16px;
  color: #96869e;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.68rem;
  box-shadow: 0 8px 24px rgba(59, 31, 72, 0.12);
}

.phone-compose i {
  display: grid;
  width: 32px;
  height: 32px;
  margin-left: auto;
  place-items: center;
  color: white;
  background: var(--violet);
  border-radius: 50%;
  font-size: 0.72rem;
}

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

.section-heading-center {
  margin-inline: auto;
  text-align: center;
}

.section-heading-center .eyebrow {
  justify-content: center;
}

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

.feature-card {
  position: relative;
  min-height: 360px;
  padding: 30px;
  overflow: hidden;
  background: #fbf4ef;
  border: 1px solid var(--line);
  border-radius: 26px;
}

.feature-wide {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.feature-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: white;
  background: var(--violet);
  border-radius: 13px;
  font-family: var(--serif);
  font-size: 1.15rem;
  box-shadow: 0 10px 22px rgba(97, 56, 119, 0.17);
}

.feature-kicker {
  display: block;
  margin-top: 22px;
  color: var(--violet);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.feature-card h3 {
  max-width: 460px;
  margin-top: 14px;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
}

.ledger-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  border-radius: 19px;
  box-shadow: var(--shadow-sm);
  transform: rotate(1.5deg);
}

.ledger-list > div {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 11px;
  align-items: center;
  min-height: 58px;
  padding: 0 12px;
  background: white;
  border-radius: 13px;
}

.merchant-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.merchant-dot.violet {
  background: var(--violet);
}

.merchant-dot.coral {
  background: var(--coral);
}

.merchant-dot.mint {
  background: var(--mint);
}

.ledger-list span {
  font-size: 0.76rem;
  font-weight: 700;
}

.ledger-list small {
  color: var(--ink-soft);
  font-size: 0.62rem;
}

.ledger-list strong {
  font-size: 0.7rem;
}

.ledger-list .positive {
  color: #39856b;
}

.feature-flex {
  background: linear-gradient(145deg, #f1e6f8, #fbf4ef);
}

.week-bars {
  display: flex;
  height: 115px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  margin-top: 38px;
  padding: 0 8px;
}

.week-bars span {
  display: flex;
  height: 100%;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.week-bars i {
  display: block;
  width: 100%;
  max-width: 32px;
  background: rgba(124, 77, 173, 0.22);
  border-radius: 7px 7px 3px 3px;
}

.week-bars .today i {
  background: linear-gradient(180deg, var(--coral), var(--violet));
}

.week-bars b {
  color: var(--ink-soft);
  font-size: 0.58rem;
}

.week-bars .h-82 { height: 82%; }
.week-bars .h-68 { height: 68%; }
.week-bars .h-58 { height: 58%; }
.week-bars .h-43 { height: 43%; }
.week-bars .h-34 { height: 34%; }
.week-bars .h-12 { height: 12%; }

.feature-context {
  background: linear-gradient(145deg, #fff5f0, #fbf4ef);
}

.memory-lines {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 28px;
}

.memory-lines span {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 13px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 0.68rem;
}

.memory-lines i {
  width: 7px;
  height: 7px;
  background: var(--coral);
  border-radius: 50%;
}

.feature-audit {
  min-height: 310px;
}

.audit-trail {
  display: flex;
  align-items: center;
  margin-top: 42px;
}

.audit-trail span {
  padding: 9px 11px;
  white-space: nowrap;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.58rem;
  font-weight: 700;
}

.audit-trail i {
  width: 42px;
  height: 1px;
  background: var(--lavender);
}

.feature-people {
  min-height: 390px;
  color: white;
  background: var(--plum);
  border-color: transparent;
}

.feature-people .feature-icon {
  color: var(--plum);
  background: var(--coral);
}

.feature-people .feature-kicker {
  color: var(--lavender);
}

.feature-people p {
  color: rgba(255, 255, 255, 0.68);
}

.people-orbit {
  position: relative;
  width: 320px;
  height: 260px;
  margin: auto;
}

.person,
.person-center {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-family: var(--serif);
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(20, 8, 26, 0.22);
}

.person {
  width: 58px;
  height: 58px;
  color: var(--ink);
  background: var(--paper);
  border: 5px solid rgba(255, 255, 255, 0.18);
}

.person-center {
  top: 91px;
  left: 128px;
  width: 72px;
  height: 72px;
  background: var(--coral);
  border: 6px solid rgba(255, 255, 255, 0.13);
  font-size: 1.3rem;
}

.person-one {
  top: 14px;
  left: 23px;
}

.person-two {
  top: 6px;
  right: 18px;
}

.person-three {
  right: 20px;
  bottom: 8px;
}

.orbit-line {
  position: absolute;
  z-index: 1;
  top: 125px;
  left: 160px;
  width: 145px;
  height: 1px;
  background: rgba(255, 255, 255, 0.24);
  transform-origin: left;
}

.line-one {
  transform: rotate(-137deg);
}

.line-two {
  transform: rotate(-48deg);
}

.line-three {
  transform: rotate(43deg);
}

.under-section {
  padding: 120px 0;
  background: #f3e9f7;
}

.under-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.under-grid h2 {
  max-width: 520px;
  font-size: clamp(3rem, 5vw, 4.6rem);
}

.text-link {
  display: inline-flex;
  gap: 8px;
  margin-top: 28px;
  color: var(--violet);
  font-size: 0.85rem;
  font-weight: 800;
}

.system-map {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(73, 39, 87, 0.11);
  border-radius: 26px;
}

.system-node {
  display: flex;
  min-height: 160px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 17px;
}

.system-node > span {
  margin-bottom: auto;
  color: var(--violet);
  font-family: var(--serif);
  font-size: 0.67rem;
  font-style: italic;
}

.system-node strong {
  font-family: var(--serif);
  font-size: 0.94rem;
}

.system-node small {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 0.57rem;
  line-height: 1.35;
}

.node-core {
  color: white;
  background: var(--violet);
  border-color: transparent;
  transform: translateY(-15px);
}

.node-core > span,
.node-core small {
  color: rgba(255, 255, 255, 0.7);
}

.node-violet {
  background: #fff2ee;
}

.system-arrow {
  color: var(--violet);
  font-size: 1.2rem;
}

.cta-section {
  padding: 0 0 100px;
  background: var(--paper);
}

.cta-card {
  position: relative;
  padding: 84px 70px;
  overflow: hidden;
  color: white;
  text-align: center;
  background:
    radial-gradient(circle at 85% 10%, rgba(151, 103, 199, 0.6), transparent 32%),
    var(--ink);
  border-radius: 34px;
}

.cta-card::before {
  position: absolute;
  inset: 20px;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
}

.cta-card .eyebrow {
  justify-content: center;
}

.cta-card h2 {
  position: relative;
  max-width: 850px;
  margin-inline: auto;
}

.cta-card > p:not(.eyebrow) {
  position: relative;
  max-width: 610px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.67);
  line-height: 1.7;
}

.cta-actions {
  position: relative;
  justify-content: center;
}

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

.button-coral:hover {
  background: #ffa99b;
}

.button-outline-light {
  color: white;
  border-color: rgba(255, 255, 255, 0.2);
}

.button-outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.38);
}

.cta-petal-one {
  top: 62px;
  left: 8%;
  transform: rotate(30deg);
}

.cta-petal-two {
  right: 9%;
  bottom: 62px;
  transform: rotate(-48deg) scale(0.7);
}

.site-footer {
  padding: 34px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

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

.footer-brand {
  font-size: 1.12rem;
}

.footer-brand .brand-mark {
  width: 29px;
  height: 29px;
  font-size: 0.88rem;
}

.site-footer p {
  margin: 0;
  color: var(--ink-soft);
  text-align: center;
  font-size: 0.72rem;
}

.site-footer p a {
  color: var(--violet);
  font-weight: 750;
}

.footer-links {
  display: flex;
  gap: 18px;
  font-size: 0.7rem;
  font-weight: 750;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@keyframes conversation-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1040px) {
  .hero {
    min-height: auto;
  }

  .hero-grid,
  .demo-grid,
  .under-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    width: min(680px, 100%);
    margin-inline: auto;
  }

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

  .flow-card:last-child {
    grid-column: 1 / -1;
    min-height: 350px;
  }

  .demo-copy {
    max-width: 760px;
  }

  .demo-tabs {
    flex-flow: row wrap;
  }

  .demo-tab {
    width: auto;
    min-width: 170px;
  }

  .phone-wrap {
    min-height: 730px;
  }

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

@media (max-width: 780px) {
  .shell {
    width: min(100% - 32px, 1180px);
  }

  .nav-wrap {
    min-height: 70px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 62px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px;
    background: rgba(255, 253, 249, 0.98);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px !important;
  }

  .nav-github {
    margin-top: 5px;
    text-align: center;
  }

  .hero {
    padding: 126px 0 82px;
  }

  .hero-grid {
    gap: 38px;
  }

  .hero h1 {
    font-size: clamp(4.1rem, 19vw, 6.2rem);
  }

  .hero-description {
    font-size: 0.98rem;
  }

  .hero-proof {
    gap: 16px;
    justify-content: space-between;
  }

  .hero-proof div {
    max-width: 31%;
  }

  .hero-visual {
    min-height: 570px;
  }

  .violet-card {
    width: min(390px, 82%);
  }

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

  .orbit-two {
    width: 560px;
    height: 560px;
  }

  .float-spend {
    top: 112px;
    right: 0;
  }

  .float-capture {
    bottom: 54px;
    left: 0;
  }

  .origin-section,
  .flow-section,
  .features-section,
  .under-section,
  .demo-section {
    padding-block: 90px;
  }

  .origin-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-label {
    padding: 0;
  }

  .origin-byline {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .origin-byline .builder-link {
    grid-column: 2;
    width: fit-content;
    margin-top: 4px;
  }

  .flow-grid,
  .feature-bento {
    grid-template-columns: 1fr;
  }

  .flow-card:last-child,
  .feature-wide {
    grid-column: auto;
  }

  .flow-card {
    min-height: 390px;
  }

  .feature-wide {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .people-orbit {
    width: min(320px, 100%);
  }

  .system-map {
    grid-template-columns: 1fr;
  }

  .system-node {
    min-height: 120px;
  }

  .node-core {
    transform: none;
  }

  .system-arrow {
    transform: rotate(90deg);
    justify-self: center;
  }

  .cta-card {
    padding: 70px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}

@media (max-width: 520px) {
  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero-proof div {
    max-width: none;
  }

  .hero-visual {
    min-height: 500px;
  }

  .violet-card {
    top: 20px;
    width: min(350px, 88%);
  }

  .violet-card-bar {
    min-height: 46px;
  }

  .violet-card figcaption {
    padding: 13px 16px 15px;
  }

  .float-spend {
    top: 90px;
    right: -4px;
    transform: scale(0.86);
    transform-origin: right;
  }

  .float-capture {
    bottom: 28px;
    left: -8px;
    transform: scale(0.86);
    transform-origin: left;
  }

  .coin-one {
    right: 4px;
  }

  .coin-two {
    left: -4px;
  }

  .origin-copy blockquote {
    font-size: 2rem;
  }

  .section-heading h2,
  .demo-copy h2,
  .under-grid h2,
  .cta-card h2 {
    font-size: 2.85rem;
  }

  .demo-tabs {
    display: grid;
    grid-template-columns: 1fr;
  }

  .demo-tab {
    width: 100%;
  }

  .phone-wrap {
    min-height: 660px;
  }

  .phone {
    min-height: 640px;
    border-width: 6px;
    border-radius: 34px;
  }

  .conversation {
    min-height: 490px;
  }

  .message {
    max-width: 90%;
  }

  .feature-card {
    min-height: 320px;
    padding: 24px;
  }

  .feature-ledger {
    min-height: 575px;
  }

  .ledger-list > div {
    grid-template-columns: auto 1fr auto;
  }

  .ledger-list small {
    display: none;
  }

  .audit-trail {
    flex-wrap: wrap;
    gap: 5px;
  }

  .audit-trail i {
    width: 13px;
  }

  .feature-people {
    min-height: 650px;
  }

  .site-footer p {
    max-width: 270px;
    line-height: 1.6;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
