@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600;9..144,700&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #f7f3ec;
  --bg-strong: #efe6d8;
  --surface: rgba(255, 251, 245, 0.78);
  --surface-strong: #fffdf9;
  --surface-dark: #1d2d34;
  --ink: #162127;
  --ink-soft: #58656d;
  --ink-muted: #76828a;
  --line: rgba(22, 33, 39, 0.1);
  --brand-blue: #6e95ff;
  --brand-blue-strong: #4d74ea;
  --brand-cyan: #66d0ff;
  --brand-violet: #9b6cf7;
  --accent: #1f6a61;
  --accent-strong: #164c46;
  --accent-soft: #d7ede7;
  --gold: #b9894d;
  --shadow-xl: 0 32px 90px rgba(24, 34, 39, 0.12);
  --shadow-lg: 0 18px 46px rgba(24, 34, 39, 0.1);
  --shadow-md: 0 10px 24px rgba(24, 34, 39, 0.08);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1160px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 255, 255, 0.88),
      transparent 28%
    ),
    radial-gradient(
      circle at 88% 14%,
      rgba(215, 237, 231, 0.6),
      transparent 22%
    ),
    linear-gradient(180deg, #fbf8f2 0%, var(--bg) 30%, #f2ebe1 100%);
  line-height: 1.6;
  overflow-x: clip;
}

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--accent-strong);
  color: #fff;
  border-radius: 999px;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(247, 243, 236, 0.7);
  border-bottom: 1px solid rgba(22, 33, 39, 0.06);
}

.nav-shell,
.footer-shell,
.footer-meta,
.hero-actions,
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-shell,
.footer-shell,
.footer-meta {
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-lockup {
  position: relative;
  display: inline-flex;
  min-width: 4rem;
  padding-right: 0.45rem;
}

.brand-logo-shell,
.brand-avatar-shell,
.footer-brand-icon {
  box-shadow: 0 18px 34px rgba(77, 116, 234, 0.2);
}

.brand-logo-shell {
  width: 3.2rem;
  height: 3.2rem;
  overflow: hidden;
  border-radius: 1.1rem;
}

.brand-avatar-shell {
  position: absolute;
  right: 0;
  bottom: -0.1rem;
  display: grid;
  place-items: center;
  width: 1.55rem;
  height: 1.55rem;
  padding: 0.14rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(77, 116, 234, 0.14);
}

.brand-logo,
.brand-avatar,
.footer-brand-icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-avatar {
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 0.08rem;
  line-height: 1.05;
}

.brand-name {
  color: var(--ink);
}

.brand-tagline {
  color: var(--ink-muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav,
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.35rem;
}

.site-nav a,
.footer-nav a,
.text-link {
  text-decoration: none;
  color: var(--ink-soft);
  transition: color 160ms ease;
}

.site-nav a:hover,
.footer-nav a:hover,
.text-link:hover {
  color: var(--accent-strong);
}

.hero,
.section {
  position: relative;
  padding: 5.5rem 0;
}

.hero {
  overflow: clip;
  padding-top: 4.5rem;
}

.hero-aura {
  position: absolute;
  border-radius: 999px;
  filter: blur(8px);
  pointer-events: none;
}

.hero-aura-one {
  top: 2rem;
  right: -6rem;
  width: 28rem;
  height: 28rem;
  background: radial-gradient(
    circle,
    rgba(215, 237, 231, 0.76) 0%,
    rgba(215, 237, 231, 0) 68%
  );
}

.hero-aura-two {
  left: -8rem;
  bottom: 2rem;
  width: 30rem;
  height: 18rem;
  background: radial-gradient(
    circle,
    rgba(255, 226, 192, 0.42) 0%,
    rgba(255, 226, 192, 0) 70%
  );
}

.hero-layout,
.privacy-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-layout > *,
.privacy-stage > *,
.feature-band > *,
.founders-preview-shell > *,
.founders-hero-shell > *,
.story-shell > *,
.cta-shell > * {
  min-width: 0;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: 0.87rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(22, 33, 39, 0.08);
  box-shadow: var(--shadow-md);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.04em;
  line-height: 1.02;
}

h1,
h2 {
  font-family: "Fraunces", Georgia, serif;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3.35rem, 8vw, 6.3rem);
}

h2 {
  max-width: 13ch;
  font-size: clamp(2.35rem, 5vw, 4.1rem);
}

h3 {
  font-size: clamp(1.5rem, 2.1vw, 2rem);
}

p,
li {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.lead {
  max-width: 36rem;
  margin-top: 1.4rem;
  font-size: 1.16rem;
  color: var(--ink);
}

.hero-actions {
  margin-top: 2rem;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.4rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

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

.button-primary {
  background: linear-gradient(
    135deg,
    var(--accent-strong) 0%,
    var(--accent) 100%
  );
  color: #fff;
  box-shadow: 0 18px 36px rgba(22, 76, 70, 0.22);
}

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

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 2.25rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-meta li {
  position: relative;
  overflow: hidden;
  padding: 1.15rem 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(22, 33, 39, 0.08);
  box-shadow: var(--shadow-md);
}

.hero-meta li::before,
.moment-card::before,
.principle-card::before,
.value-card::before,
.policy-content section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 1.15rem;
  width: 4rem;
  height: 0.72rem;
  border-radius: 0 0 0.9rem 0.9rem;
  background: linear-gradient(
    90deg,
    rgba(102, 208, 255, 0.34) 0%,
    rgba(155, 108, 247, 0.28) 100%
  );
}

.hero-meta strong,
.timeline-row strong,
.screen-card strong,
.screen-document strong,
.visual-list strong,
.privacy-checklist strong,
.privacy-badge strong {
  display: block;
  color: var(--ink);
  font-weight: 800;
}

.hero-meta span {
  display: block;
  margin-top: 0.35rem;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.hero-visual {
  position: relative;
  min-height: 42rem;
  display: grid;
  place-items: center;
  width: 100%;
  max-width: 33rem;
  margin-inline: auto;
}

.floating-file {
  position: absolute;
  z-index: 0;
  width: 11rem;
  padding: 1rem 0.9rem 0.9rem;
  border-radius: 1.45rem;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(22, 33, 39, 0.08);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
}

.floating-file-back {
  top: 5rem;
  right: -0.4rem;
  transform: rotate(14deg);
}

.floating-file-front {
  bottom: 4.9rem;
  left: -0.8rem;
  transform: rotate(-13deg);
}

.floating-file-tab {
  display: block;
  width: 38%;
  height: 0.82rem;
  margin-bottom: 0.95rem;
  border-radius: 0.72rem 0.72rem 0.3rem 0.3rem;
  background: linear-gradient(
    135deg,
    rgba(102, 208, 255, 0.82) 0%,
    rgba(110, 149, 255, 0.92) 100%
  );
}

.floating-file-line {
  display: block;
  height: 0.56rem;
  margin-top: 0.48rem;
  border-radius: 999px;
  background: rgba(22, 33, 39, 0.1);
}

.floating-file-line.short {
  width: 52%;
}

.floating-file-line.medium {
  width: 74%;
}

.device-mockup {
  position: relative;
  z-index: 1;
  width: min(100%, 24.5rem);
  padding: 0.85rem;
  border-radius: 3rem;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.94) 0%,
    rgba(225, 232, 236, 0.9) 100%
  );
  box-shadow: 0 40px 110px rgba(22, 33, 39, 0.2);
  transform: rotate(-5deg);
}

.device-top {
  display: grid;
  place-items: center;
  padding: 0.4rem 0 0.85rem;
}

.device-camera {
  width: 7rem;
  height: 1.4rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #182126 0%, #0f1519 100%);
}

.device-screen {
  padding: 1rem;
  border-radius: 2.4rem;
  background: linear-gradient(
    180deg,
    rgba(252, 250, 247, 1) 0%,
    rgba(244, 240, 232, 1) 100%
  );
  border: 1px solid rgba(22, 33, 39, 0.08);
  overflow: hidden;
}

.screen-status,
.screen-chip-row,
.screen-grid,
.screen-tabs,
.visual-pill-row,
.privacy-points {
  display: flex;
  gap: 0.6rem;
}

.screen-status,
.screen-tabs {
  justify-content: space-between;
}

.screen-tabs {
  flex-wrap: wrap;
}

.screen-status {
  margin-bottom: 1rem;
  color: var(--ink-muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.screen-hero {
  padding: 1rem;
  border-radius: 1.7rem;
  background: linear-gradient(
    135deg,
    rgba(27, 103, 93, 0.96) 0%,
    rgba(69, 126, 117, 0.9) 100%
  );
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.screen-hero-top {
  display: flex;
  justify-content: space-between;
  gap: 0.9rem;
  align-items: flex-start;
}

.screen-hero h2 {
  max-width: none;
  color: #fff;
  font-size: 1.75rem;
}

.screen-profile-chip {
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  padding: 0.42rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.screen-profile-chip img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.screen-overline,
.screen-label {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.screen-overline {
  color: rgba(255, 255, 255, 0.74);
  margin-bottom: 0.45rem;
}

.screen-chip-row {
  flex-wrap: wrap;
  margin-top: 0.85rem;
}

.screen-chip-row span,
.visual-pill-row span,
.privacy-points span {
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.screen-chip-row span {
  background: rgba(255, 255, 255, 0.18);
}

.screen-grid {
  margin-top: 1rem;
}

.screen-grid,
.moments-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.screen-grid {
  gap: 0.8rem;
}

.screen-card,
.screen-document,
.moment-card,
.feature-band,
.privacy-aside,
.cta-shell,
.policy-shell,
.policy-content section {
  border: 1px solid rgba(22, 33, 39, 0.08);
  box-shadow: var(--shadow-lg);
}

.screen-card,
.screen-document {
  padding: 0.95rem;
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.74);
}

.screen-card-accent {
  background: rgba(215, 237, 231, 0.78);
}

.screen-card span,
.screen-note,
.timeline-row p,
.visual-list span,
.privacy-note-label,
.privacy-note-copy {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.86rem;
  color: var(--ink-soft);
}

.screen-document {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
}

.screen-document-badge {
  position: relative;
  width: 2.2rem;
  height: 2.7rem;
  border-radius: 0.9rem;
  background: linear-gradient(
    180deg,
    rgba(102, 208, 255, 0.4) 0%,
    rgba(110, 149, 255, 0.18) 100%
  );
  border: 1px solid rgba(77, 116, 234, 0.14);
}

.screen-document-badge::before {
  content: "";
  position: absolute;
  top: 0.42rem;
  right: 0.42rem;
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 0.16rem;
  background: rgba(255, 255, 255, 0.88);
  transform: rotate(45deg);
}

.screen-note {
  margin-top: 0;
  white-space: nowrap;
}

.screen-timeline {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.timeline-row {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.8rem 0.1rem;
  border-top: 1px solid rgba(22, 33, 39, 0.08);
}

.timeline-dot {
  width: 0.7rem;
  height: 0.7rem;
  margin-top: 0.45rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 100%);
  box-shadow: 0 0 0 0.25rem rgba(31, 106, 97, 0.12);
}

.screen-tabs {
  margin-top: 1.1rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(22, 33, 39, 0.08);
  color: var(--ink-muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.screen-tabs .is-active {
  color: var(--accent-strong);
}

.screen-tabs span {
  flex: 1 1 4.5rem;
  text-align: center;
}

.orbit-tag {
  position: absolute;
  z-index: 2;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(22, 33, 39, 0.08);
  box-shadow: var(--shadow-md);
  font-size: 0.86rem;
  font-weight: 800;
  color: var(--ink);
  animation: floatTag 7s ease-in-out infinite;
}

.orbit-tag-left {
  top: 4rem;
  left: 0.4rem;
}

.orbit-tag-right {
  top: 8rem;
  right: 0;
  animation-delay: 1.3s;
}

.orbit-tag-bottom {
  bottom: 4rem;
  left: 2.4rem;
  animation-delay: 2.4s;
}

.hero-foot {
  margin-top: 2rem;
  padding: 1.15rem 1.35rem;
  border-top: 1px solid rgba(22, 33, 39, 0.08);
}

.hero-foot p {
  max-width: 56rem;
  color: var(--ink);
  font-size: 1rem;
}

.section-heading {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.5rem;
  max-width: 46rem;
}

.section-heading-wide {
  max-width: 52rem;
}

.moments-grid {
  gap: 1.15rem;
}

.moment-card {
  position: relative;
  overflow: hidden;
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.74) 0%,
    rgba(248, 243, 235, 0.9) 100%
  );
}

.moment-number {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.moment-card h3 {
  margin-bottom: 0.75rem;
}

.feature-stack {
  display: grid;
  gap: 1.25rem;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: 2rem;
  align-items: center;
  padding: 1.85rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.72);
}

.feature-band-alt {
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr);
}

.feature-band-alt .feature-copy {
  order: 2;
}

.feature-band-alt .feature-visual {
  order: 1;
}

.feature-copy {
  display: grid;
  gap: 1rem;
}

.feature-list {
  display: grid;
  gap: 0.6rem;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 1.2rem;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 100%);
}

.feature-visual {
  position: relative;
  overflow: hidden;
  min-height: 20rem;
  padding: 1.35rem;
  border-radius: calc(var(--radius-xl) - 8px);
  background:
    radial-gradient(
      circle at top right,
      rgba(255, 255, 255, 0.76),
      transparent 34%
    ),
    linear-gradient(
      180deg,
      rgba(239, 230, 216, 0.58) 0%,
      rgba(255, 255, 255, 0.86) 100%
    );
  border: 1px solid rgba(22, 33, 39, 0.06);
}

.visual-stack,
.document-sheet,
.privacy-badge {
  height: 100%;
}

.visual-stack {
  display: grid;
  gap: 1rem;
}

.visual-pill-row {
  flex-wrap: wrap;
}

.visual-pill-row span {
  color: var(--accent-strong);
  background: rgba(31, 106, 97, 0.08);
}

.storage-shelf,
.archive-tray,
.privacy-storage-motif {
  display: flex;
  gap: 0.7rem;
}

.storage-shelf {
  align-items: flex-end;
}

.storage-folder {
  position: relative;
  flex: 1 1 0;
  min-height: 3.55rem;
  border-radius: 1rem 1rem 1.15rem 1.15rem;
  background: linear-gradient(
    180deg,
    rgba(102, 208, 255, 0.24) 0%,
    rgba(110, 149, 255, 0.14) 100%
  );
  border: 1px solid rgba(77, 116, 234, 0.12);
}

.storage-folder::before {
  content: "";
  position: absolute;
  top: -0.45rem;
  left: 0.85rem;
  width: 40%;
  height: 0.8rem;
  border-radius: 0.75rem 0.75rem 0.15rem 0.15rem;
  background: inherit;
  border: 1px solid rgba(77, 116, 234, 0.12);
  border-bottom: 0;
}

.storage-folder-tall {
  min-height: 4.1rem;
}

.storage-folder-open {
  min-height: 3.9rem;
  transform: translateY(-0.2rem);
  background: linear-gradient(
    180deg,
    rgba(155, 108, 247, 0.24) 0%,
    rgba(102, 208, 255, 0.16) 100%
  );
}

.visual-list {
  display: grid;
  gap: 0.9rem;
}

.visual-list div {
  padding: 1rem;
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(22, 33, 39, 0.08);
}

.feature-visual-search {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.search-bar {
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(22, 33, 39, 0.08);
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 700;
}

.document-sheet {
  display: grid;
  align-content: start;
  gap: 0.7rem;
  padding: 1.3rem;
  border-radius: 1.8rem;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(22, 33, 39, 0.08);
}

.document-sheet-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  color: var(--ink-muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.archive-tray {
  flex-wrap: wrap;
}

.archive-tray span {
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  background: rgba(102, 208, 255, 0.12);
  color: var(--brand-blue-strong);
  font-size: 0.78rem;
  font-weight: 800;
}

.highlight-line,
.text-line {
  display: block;
  height: 0.7rem;
  border-radius: 999px;
}

.highlight-line {
  background: linear-gradient(
    90deg,
    rgba(185, 137, 77, 0.48) 0%,
    rgba(185, 137, 77, 0.18) 100%
  );
}

.text-line {
  background: rgba(22, 33, 39, 0.1);
}

.highlight-line.short,
.text-line.medium {
  width: 48%;
}

.highlight-line.medium {
  width: 68%;
}

.text-line.long {
  width: 82%;
}

.feature-visual-lock {
  display: grid;
  gap: 1.1rem;
  align-content: center;
}

.principles-grid,
.founders-grid,
.values-grid {
  display: grid;
  gap: 1.15rem;
}

.principles-grid,
.values-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.principle-card,
.founders-preview-shell,
.founder-card,
.value-card,
.story-timeline,
.founders-hero-panel {
  border: 1px solid rgba(22, 33, 39, 0.08);
  box-shadow: var(--shadow-lg);
}

.principle-card,
.value-card {
  position: relative;
  overflow: hidden;
  padding: 1.55rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
}

.principle-kicker,
.founder-role,
.founders-panel-kicker {
  display: inline-block;
  margin-bottom: 0.9rem;
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.principle-card h3,
.value-card h3,
.founder-card h3 {
  margin-bottom: 0.75rem;
}

.privacy-badge {
  display: grid;
  place-items: center;
  gap: 0.9rem;
  padding: 2rem 1rem;
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(22, 33, 39, 0.08);
}

.privacy-ring {
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 999px;
  background:
    radial-gradient(
      circle at center,
      rgba(255, 255, 255, 0.12) 0 42%,
      transparent 44%
    ),
    linear-gradient(
      135deg,
      var(--accent-strong) 0%,
      var(--accent) 58%,
      #7db3aa 100%
    );
  box-shadow: 0 16px 36px rgba(22, 76, 70, 0.22);
}

.privacy-points {
  flex-wrap: wrap;
}

.privacy-points span {
  color: var(--accent-strong);
  background: rgba(31, 106, 97, 0.08);
}

.privacy-section {
  padding-top: 4.5rem;
}

.privacy-stage {
  align-items: start;
  gap: 1.5rem;
}

.privacy-copy-block {
  display: grid;
  gap: 1rem;
}

.privacy-checklist {
  display: grid;
  gap: 1rem;
  margin-top: 0.6rem;
}

.privacy-checklist div {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(22, 33, 39, 0.08);
}

.privacy-aside {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    180deg,
    rgba(24, 40, 46, 0.96) 0%,
    rgba(35, 63, 71, 0.96) 100%
  );
}

.privacy-aside .text-link,
.privacy-note-label,
.privacy-note-copy {
  color: rgba(250, 247, 242, 0.82);
}

.privacy-note-label {
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.privacy-note-copy {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.privacy-storage-motif {
  margin: 1rem 0 1.15rem;
}

.privacy-storage-motif span {
  position: relative;
  flex: 1 1 0;
  height: 4.4rem;
  border-radius: 1rem 1rem 1.15rem 1.15rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.privacy-storage-motif span::before {
  content: "";
  position: absolute;
  top: -0.42rem;
  left: 0.8rem;
  width: 38%;
  height: 0.72rem;
  border-radius: 0.7rem 0.7rem 0.15rem 0.15rem;
  background: rgba(255, 255, 255, 0.12);
}

.founders-preview-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 1.5rem;
  padding: 1.8rem;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(
      circle at top right,
      rgba(255, 255, 255, 0.4),
      transparent 26%
    ),
    linear-gradient(
      180deg,
      rgba(255, 251, 245, 0.84) 0%,
      rgba(239, 230, 216, 0.68) 100%
    );
}

.founders-preview-copy,
.founders-preview-actions {
  display: grid;
  gap: 1rem;
}

.founders-preview-actions {
  align-content: center;
}

.founders-preview-actions p {
  max-width: 24rem;
}

.founders-hero {
  padding-top: 4.5rem;
}

.founders-hero-shell,
.story-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 1.5rem;
  align-items: start;
}

.founders-hero-copy,
.story-copy {
  display: grid;
  gap: 1rem;
}

.founders-hero-text {
  max-width: 42rem;
}

.founders-hero-panel,
.story-timeline {
  padding: 1.6rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.76);
}

.founders-panel-list {
  display: grid;
  gap: 0.9rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.founders-panel-list li {
  position: relative;
  padding-left: 1.2rem;
}

.founders-panel-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 100%);
}

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

.founder-card {
  padding: 1.7rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.76);
}

.founder-badge {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--accent) 0%, #7cb3a9 100%);
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  box-shadow: 0 14px 28px rgba(31, 106, 97, 0.22);
}

.founder-badge-alt {
  background: linear-gradient(135deg, #b9894d 0%, #dbba8d 100%);
}

.story-timeline {
  display: grid;
  gap: 1rem;
}

.story-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(22, 33, 39, 0.08);
}

.story-step:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.story-step span {
  display: inline-grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  background: rgba(31, 106, 97, 0.1);
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 800;
}

.story-step strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--ink);
}

.cta-section {
  padding-top: 4rem;
}

.cta-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(
      circle at top right,
      rgba(255, 255, 255, 0.16),
      transparent 25%
    ),
    linear-gradient(
      135deg,
      rgba(22, 76, 70, 0.98) 0%,
      rgba(45, 98, 90, 0.95) 100%
    );
}

.cta-shell h2,
.cta-shell p,
.cta-shell .eyebrow {
  color: #fdfaf5;
}

.cta-copy {
  max-width: 38rem;
  margin-top: 1rem;
}

.cta-shell .button-primary {
  background: #fff8ed;
  color: var(--accent-strong);
}

.cta-shell .button-secondary {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
}

.site-footer {
  padding: 1rem 0 2rem;
}

.footer-brand {
  color: var(--ink);
  font-weight: 800;
}

.footer-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.45rem;
}

.footer-brand-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.9rem;
}

.footer-copy {
  max-width: 30rem;
}

.footer-meta {
  border-top: 1px solid rgba(22, 33, 39, 0.08);
  padding-top: 1rem;
}

code,
.policy-meta {
  font-size: 0.92rem;
}

code {
  font-family: "SFMono-Regular", Consolas, monospace;
}

.policy-page .section {
  padding-top: 3.5rem;
}

.policy-shell {
  display: grid;
  gap: 2rem;
  padding: 1.8rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.72);
}

.policy-intro {
  max-width: 48rem;
}

.policy-content {
  display: grid;
  gap: 1rem;
}

.policy-content section {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
}

.policy-content h2 {
  max-width: none;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.policy-content ul {
  padding-left: 1.25rem;
  margin: 1rem 0 0;
  color: var(--ink-soft);
}

.policy-content li + li {
  margin-top: 0.6rem;
}

.policy-content p + p,
.policy-content p + ul,
.policy-content ul + p {
  margin-top: 1rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.2, 1, 0.32, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

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

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

@media (max-width: 1080px) {
  .hero-layout,
  .privacy-stage,
  .feature-band,
  .feature-band-alt,
  .founders-preview-shell,
  .founders-hero-shell,
  .story-shell {
    grid-template-columns: 1fr;
  }

  .feature-band-alt .feature-copy,
  .feature-band-alt .feature-visual {
    order: initial;
  }

  .hero-visual {
    min-height: auto;
    padding-top: 1rem;
  }

  .floating-file-back {
    right: 1rem;
  }

  .floating-file-front {
    left: 1rem;
  }

  .hero-meta,
  .principles-grid,
  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-shell,
  .footer-shell,
  .footer-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 900px) {
  .nav-shell {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .site-nav {
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.35rem;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }

  .site-nav a {
    flex: 0 0 auto;
    white-space: nowrap;
  }
}

@media (max-width: 820px) {
  .moments-grid,
  .screen-grid,
  .principles-grid,
  .values-grid,
  .founders-grid {
    grid-template-columns: 1fr;
  }

  h1,
  h2 {
    max-width: none;
  }

  .orbit-tag-left,
  .orbit-tag-right {
    top: auto;
    bottom: 1.4rem;
  }

  .orbit-tag-left {
    left: 0;
  }

  .orbit-tag-right {
    right: 0;
  }

  .orbit-tag-bottom {
    display: none;
  }

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

  .screen-note {
    grid-column: 1 / -1;
    white-space: normal;
  }
}

@media (max-width: 640px) {
  .hero,
  .section {
    padding: 4.25rem 0;
  }

  .container {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .hero-actions,
  .cta-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-meta,
  .moments-grid,
  .screen-grid,
  .principles-grid,
  .values-grid,
  .founders-grid {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .site-header {
    backdrop-filter: blur(14px);
  }

  .brand {
    gap: 0.75rem;
  }

  .brand-logo-shell {
    width: 2.85rem;
    height: 2.85rem;
    border-radius: 0.95rem;
  }

  .brand-avatar-shell {
    width: 1.4rem;
    height: 1.4rem;
  }

  .brand-tagline {
    font-size: 0.62rem;
    letter-spacing: 0.12em;
  }

  .nav-shell,
  .footer-shell,
  .footer-meta {
    padding: 0.85rem 0;
  }

  .device-mockup {
    width: min(100%, 21rem);
    transform: none;
    border-radius: 2.45rem;
  }

  .floating-file {
    width: 8.8rem;
    padding: 0.8rem 0.75rem 0.75rem;
  }

  .device-screen {
    padding: 0.85rem;
    border-radius: 2rem;
  }

  .screen-hero h2 {
    font-size: 1.45rem;
  }

  .feature-band,
  .founders-preview-shell,
  .policy-shell,
  .policy-content section,
  .founder-card,
  .founders-hero-panel,
  .story-timeline,
  .cta-shell,
  .privacy-aside,
  .moment-card,
  .principle-card,
  .value-card {
    padding: 1.25rem;
  }

  .feature-visual {
    min-height: 16rem;
    padding: 1.05rem;
  }

  .hero-foot {
    padding: 1rem 0.15rem 0;
  }

  .orbit-tag {
    padding: 0.6rem 0.8rem;
    font-size: 0.78rem;
  }

  .privacy-storage-motif {
    gap: 0.5rem;
  }

  .site-nav,
  .footer-nav {
    gap: 0.75rem 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(calc(100% - 1rem), var(--container));
  }

  h1 {
    font-size: clamp(2.6rem, 12vw, 3.45rem);
  }

  h2 {
    font-size: clamp(2rem, 9vw, 2.7rem);
  }

  .hero-meta li,
  .policy-shell,
  .policy-content section {
    padding: 1rem;
  }

  .site-nav {
    gap: 0.7rem;
    font-size: 0.95rem;
  }

  .brand-tagline {
    display: none;
  }

  .floating-file-front {
    display: none;
  }

  .screen-tabs span {
    flex-basis: 4rem;
  }

  .story-step {
    grid-template-columns: 1fr;
  }
}

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

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

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