:root {
  --ink: #151515;
  --muted: #696761;
  --paper: #f7f3eb;
  --paper-bright: #fffdf8;
  --glass: rgba(255, 255, 255, 0.58);
  --glass-strong: rgba(255, 255, 255, 0.76);
  --line: rgba(35, 33, 29, 0.12);
  --charcoal: #22211f;
  --champagne: #d9c38f;
  --sand: #ebe0c9;
  --mist: #dce5df;
  --shadow: 0 32px 90px rgba(31, 28, 23, 0.16);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: "Avenir Next", "Trebuchet MS", sans-serif;
  background:
    radial-gradient(circle at 18% 12%, rgba(217, 195, 143, 0.42), transparent 28rem),
    radial-gradient(circle at 84% 24%, rgba(220, 229, 223, 0.72), transparent 30rem),
    linear-gradient(135deg, #f7f3eb 0%, #eee7d9 48%, #f9f6ef 100%);
  overflow-x: hidden;
}

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

.ambient {
  position: fixed;
  border-radius: 999px;
  filter: blur(2px);
  opacity: 0.55;
  pointer-events: none;
  z-index: -2;
}

.ambient-one {
  width: 34rem;
  height: 34rem;
  top: -12rem;
  right: -8rem;
  background: rgba(168, 161, 146, 0.42);
}

.ambient-two {
  width: 26rem;
  height: 26rem;
  left: -11rem;
  bottom: 12rem;
  background: rgba(217, 195, 143, 0.34);
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.17;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.35) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.28) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, calc(100% - 40px));
  margin: 18px auto 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.64);
  backdrop-filter: blur(24px) saturate(150%);
  box-shadow: 0 18px 60px rgba(31, 28, 23, 0.08);
}

.brand,
.nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  box-shadow: 0 8px 22px rgba(20, 19, 17, 0.18);
}

.nav {
  gap: 6px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav a {
  padding: 10px 14px;
  border-radius: 999px;
  transition: background 180ms ease, color 180ms ease;
}

.nav a:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.68);
}

.section-shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.88fr);
  gap: 48px;
  align-items: center;
  padding: 96px 0 82px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #8b6f2d;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Iowan Old Style", "Georgia", serif;
  line-height: 0.95;
  letter-spacing: -0.065em;
}

h1 {
  max-width: 780px;
  margin-bottom: 26px;
  font-size: clamp(4.3rem, 10vw, 8.8rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.8rem, 6vw, 5.8rem);
}

h3 {
  margin-bottom: 14px;
  font-size: 1.55rem;
  letter-spacing: -0.04em;
}

.hero-text {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1.14rem, 2vw, 1.42rem);
  line-height: 1.58;
}

.hero-actions,
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-actions {
  margin-top: 34px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 850;
  letter-spacing: -0.02em;
  overflow: hidden;
  transform: translateZ(0);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: -90% 0 auto;
  height: 110%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.62), transparent);
  transform: translateX(-130%) rotate(8deg);
  transition: transform 520ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(31, 28, 23, 0.16);
}

.button:hover::before {
  transform: translateX(130%) rotate(8deg);
}

.button.primary {
  color: #fffaf0;
  border-color: rgba(32, 31, 28, 0.78);
  background: linear-gradient(135deg, #171716, #3a3427);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(18px);
}

.hero-proof {
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.hero-proof span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
}

.hero-visual {
  perspective: 1200px;
}

.glass-stage {
  position: relative;
  min-height: 620px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 52px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.28)),
    radial-gradient(circle at 30% 18%, rgba(217, 195, 143, 0.42), transparent 15rem);
  box-shadow: var(--shadow);
  backdrop-filter: blur(28px) saturate(160%);
  transform: rotateX(4deg) rotateY(-8deg);
}

.app-icon {
  position: absolute;
  top: 52px;
  right: 52px;
  width: 142px;
  border-radius: 34px;
  box-shadow: 0 30px 58px rgba(31, 28, 23, 0.2);
}

.clipboard-panel {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 34px;
  background: rgba(34, 33, 31, 0.78);
  color: #fffaf0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 26px 60px rgba(31, 28, 23, 0.2);
  backdrop-filter: blur(26px);
}

.panel-top {
  display: flex;
  gap: 7px;
  margin-bottom: 20px;
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.panel-title {
  margin-bottom: 16px;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.search-pill {
  height: 48px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.clip-row {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  align-items: center;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
}

.clip-row + .clip-row {
  margin-top: 10px;
}

.clip-row.active {
  border-color: rgba(217, 195, 143, 0.55);
  background: rgba(217, 195, 143, 0.14);
}

.clip-row strong,
.clip-row span {
  display: block;
}

.clip-row strong {
  letter-spacing: -0.03em;
}

.clip-row span {
  margin-top: 3px;
  color: rgba(255, 250, 240, 0.62);
  font-size: 0.9rem;
}

.thumb {
  width: 58px;
  height: 58px;
  border-radius: 16px;
}

.image-thumb {
  background: linear-gradient(135deg, #f5edd8, #d9c38f 48%, #24211d);
}

.video-thumb {
  background: linear-gradient(135deg, #dce5df, #8c978f 52%, #2a2d2a);
}

.text-thumb {
  background:
    linear-gradient(#5f5848 0 0) 14px 18px / 30px 4px no-repeat,
    linear-gradient(#5f5848 0 0) 14px 29px / 24px 4px no-repeat,
    linear-gradient(135deg, #fffaf0, #d9d1bf);
}

.section-heading {
  grid-column: 1 / -1;
  max-width: 760px;
}

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

.feature-card,
.privacy-card,
.privacy-list,
.install-window,
.install-copy {
  border: 1px solid rgba(255, 255, 255, 0.68);
  background: var(--glass);
  box-shadow: 0 22px 70px rgba(31, 28, 23, 0.1);
  backdrop-filter: blur(24px) saturate(150%);
}

.feature-card {
  min-height: 290px;
  padding: 28px;
  border-radius: 34px;
}

.feature-card p,
.privacy-card p,
.install-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.card-number {
  display: inline-flex;
  margin-bottom: 42px;
  color: #8b6f2d;
  font-weight: 900;
}

.privacy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 18px;
  align-items: stretch;
  padding: 0 0 86px;
}

.privacy-card,
.privacy-list {
  border-radius: 42px;
}

.privacy-card {
  padding: 42px;
}

.privacy-list {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.privacy-list div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.42);
}

.privacy-list strong,
.privacy-list span {
  display: block;
}

.privacy-list strong {
  margin-bottom: 6px;
  letter-spacing: -0.03em;
}

.privacy-list span {
  color: var(--muted);
  line-height: 1.5;
}

.install {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 22px;
  align-items: center;
  padding: 0 0 92px;
}

.install-window {
  border-radius: 34px;
  overflow: hidden;
  background: var(--paper-bright);
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.traffic {
  width: 15px;
  height: 15px;
  border-radius: 999px;
}

.red {
  background: #ff6158;
}

.yellow {
  background: #ffbd2d;
}

.green {
  background: #28c840;
}

.window-title {
  margin-left: 12px;
  color: #57534c;
  font-weight: 900;
}

.install-body {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 44px;
  align-items: center;
  min-height: 360px;
  padding: 58px;
}

.install-item {
  display: grid;
  justify-items: center;
  gap: 14px;
  font-weight: 850;
  font-size: 1.15rem;
}

.install-item img {
  width: 132px;
  border-radius: 31px;
  box-shadow: 0 24px 46px rgba(31, 28, 23, 0.18);
}

.install-arrow {
  color: var(--champagne);
  font-size: 4rem;
  font-family: "Iowan Old Style", "Georgia", serif;
}

.folder-shape {
  display: grid;
  place-items: center;
  width: 150px;
  height: 104px;
  border-radius: 18px;
  color: rgba(34, 97, 123, 0.52);
  font-size: 3rem;
  font-weight: 900;
  background:
    linear-gradient(180deg, #6ed0ff 0 26%, transparent 26%),
    linear-gradient(180deg, #71cdf0, #35a7d7);
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.42), 0 22px 42px rgba(31, 28, 23, 0.12);
}

.install-copy {
  padding: 34px;
  border-radius: 34px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto 28px;
  padding: 22px 4px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    border-radius: 28px;
  }

  .nav {
    display: none;
  }

  .hero,
  .privacy,
  .install,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 70px;
  }

  .glass-stage {
    min-height: 540px;
    transform: none;
  }

  .feature-card {
    min-height: auto;
  }

  .install-body {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 38px 24px;
  }

  .install-arrow {
    transform: rotate(90deg);
  }
}

@media (max-width: 560px) {
  .section-shell,
  .site-header,
  .site-footer {
    width: min(100% - 24px, 1120px);
  }

  h1 {
    font-size: 4rem;
  }

  .hero {
    gap: 30px;
  }

  .glass-stage {
    min-height: 500px;
    border-radius: 34px;
  }

  .app-icon {
    top: 28px;
    right: 28px;
    width: 104px;
    border-radius: 24px;
  }

  .clipboard-panel {
    left: 18px;
    right: 18px;
    bottom: 18px;
    border-radius: 26px;
  }

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