@font-face {
  font-family: "Uncut Sans";
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url("/fonts/uncut-sans-latin-400-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Uncut Sans";
  font-style: normal;
  font-display: swap;
  font-weight: 600;
  src: url("/fonts/uncut-sans-latin-600-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Uncut Sans";
  font-style: normal;
  font-display: swap;
  font-weight: 700;
  src: url("/fonts/uncut-sans-latin-700-normal.woff2") format("woff2");
}

:root {
  --ink: #15151a;
  --muted: #6e625b;
  --paper: #fff7ef;
  --paper-deep: #f9ede3;
  --surface: #fffdfa;
  --line: rgba(21, 21, 26, 0.1);
  --capsule-amber: #f59e0a;
  --orange: #de4d25;
  --orange-dark: #bb3e1d;
  --navy: #1c2945;
  --mint: #1f7a5c;
  --shadow: 0 24px 70px rgba(64, 41, 28, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 72% 10%, rgba(255, 255, 255, 0.9), transparent 30rem),
    linear-gradient(180deg, var(--paper), var(--paper-deep));
  font-family: "Uncut Sans", Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

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

img {
  max-width: 100%;
}

main {
  position: relative;
  z-index: 1;
}

.hero {
  position: relative;
  min-height: auto;
  overflow: hidden;
  padding: 34px clamp(22px, 6vw, 96px) 28px;
}

.nav,
.footer,
.heroGrid,
.section,
.privacyBand,
.cta {
  max-width: 1120px;
  margin: 0 auto;
}

.nav,
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
}

.brand img {
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(222, 77, 37, 0.2);
}

.brandAccent {
  color: var(--capsule-amber);
}

.navLinks,
.footerLinks {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(21, 21, 26, 0.68);
  font-size: 0.98rem;
}

.cornerMascot {
  position: fixed;
  left: -54px;
  bottom: -64px;
  width: 222px;
  height: auto;
  z-index: 0;
  pointer-events: none;
}

.heroGrid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.95fr);
  gap: clamp(40px, 7vw, 92px);
  align-items: center;
  padding-top: clamp(18px, 3.6vh, 32px);
}

.heroCopy {
  min-width: 0;
  max-width: 640px;
}

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

h1 {
  margin-bottom: 26px;
  font-size: clamp(3.25rem, 4.75vw, 3.75rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2.5rem, 3.75vw, 3rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 9px;
  font-size: 1.35rem;
  letter-spacing: 0;
}

.heroLead,
.sectionHeader p,
.featureCard p,
.step p,
.privacyBand p,
.cta p,
.footer p,
.legalDoc p,
.legalDoc li {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.58;
}

.heroLead {
  max-width: 560px;
  margin-bottom: 32px;
  font-size: clamp(1.25rem, 1.875vw, 1.5rem);
  line-height: 1.333;
}

.heroActions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.appStoreBadgeLink {
  display: inline-flex;
  line-height: 0;
}

.appStoreBadge {
  width: clamp(168px, 18vw, 190px);
  height: auto;
}

.primaryButton,
.secondaryButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  border-radius: 999px;
  padding: 0 34px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
}

.primaryButton {
  color: #fff;
  background: linear-gradient(180deg, #ee663c, var(--orange));
  box-shadow: 0 16px 28px rgba(222, 77, 37, 0.28);
}

.secondaryButton {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(21, 21, 26, 0.1);
}

.proofRow,
.pillGrid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.proofRow span,
.pillGrid span {
  border: 1px solid rgba(222, 77, 37, 0.18);
  border-radius: 999px;
  padding: 8px 12px;
  color: #74402d;
  background: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
  font-weight: 680;
}

.heroVisual {
  position: relative;
  display: grid;
  min-height: 560px;
  place-items: center;
}

.phoneMockup {
  position: relative;
  width: min(291px, 78vw);
  aspect-ratio: 0.52;
  border: 12px solid #0e0f12;
  border-radius: 48px;
  background: #0e0f12;
  box-shadow: 0 34px 80px rgba(25, 18, 12, 0.24);
  overflow: hidden;
}

.appPhone {
  width: min(258px, 72vw);
  aspect-ratio: 1179 / 2556;
  border-width: 8px;
  border-radius: 42px;
  background: #111;
}

.appPhone img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.phoneIsland {
  position: absolute;
  top: 14px;
  left: 50%;
  width: 112px;
  height: 31px;
  border-radius: 999px;
  background: #0e0f12;
  transform: translateX(-50%);
  z-index: 2;
}

.phoneContent {
  position: relative;
  display: flex;
  height: 100%;
  flex-direction: column;
  gap: 18px;
  overflow: hidden;
  border-radius: 34px;
  padding: 70px 18px 22px;
  background: #fff8ee;
}

.phoneTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
}

.phoneTop span {
  border-radius: 999px;
  padding: 9px 16px;
  background: var(--orange);
  font-weight: 760;
}

.phoneTop svg {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 10px;
  color: white;
  background: var(--navy);
}

.phoneContent img {
  width: 122%;
  max-width: none;
  margin: 24px 0 0 -11%;
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(29, 26, 23, 0.16);
}

.phoneCaption {
  display: grid;
  gap: 3px;
  margin-top: auto;
  text-align: center;
}

.phoneCaption strong {
  font-size: 1.2rem;
  color: var(--navy);
}

.phoneCaption span {
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  padding: clamp(58px, 8vw, 96px) clamp(20px, 4vw, 32px);
}

.sectionHeader {
  max-width: 760px;
  margin-bottom: 28px;
}

.simple {
  position: relative;
}

.featureCards,
.stepsGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.featureCard,
.step,
.trustItem,
.legalDoc {
  border: 1px solid rgba(21, 21, 26, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 16px 52px rgba(64, 41, 28, 0.08);
}

.featureCard {
  display: flex;
  min-height: 560px;
  flex-direction: column;
  overflow: hidden;
  padding: 22px;
}

.featureCard img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
  margin-bottom: 26px;
  border-radius: 8px;
  background: var(--paper);
}

.featureScreenshot {
  position: relative;
  height: 300px;
  margin-bottom: 26px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--paper);
}

.featureScreenshot img {
  width: 100%;
  height: 100%;
  margin: 0;
  border-radius: 0;
  background: transparent;
  object-fit: cover;
  transform: scale(1.5);
  transform-origin: left center;
}

.featureScreenshotMemory img {
  object-position: 12% 72%;
  transform-origin: 12% 72%;
}

.featureScreenshotDocument img {
  object-position: 12% 50%;
  transform-origin: 12% 50%;
}

.featureCard:nth-child(2) img {
  object-fit: contain;
  padding: 28px;
}

.featureCard svg {
  margin-bottom: 12px;
  color: var(--orange);
}

.featureCard p {
  margin-bottom: 0;
}

.step {
  min-height: 260px;
  padding: 28px;
}

.step span {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 34px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--orange);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-weight: 700;
}

.privacyBand {
  display: grid;
  grid-template-columns: minmax(160px, 0.32fr) minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: clamp(24px, 4vw, 46px);
  align-items: center;
  border-radius: 8px;
  border: 1px solid rgba(222, 77, 37, 0.14);
  padding: clamp(32px, 5vw, 62px);
  background:
    radial-gradient(circle at 12% 18%, rgba(245, 158, 10, 0.2), transparent 18rem),
    radial-gradient(circle at 86% 92%, rgba(222, 77, 37, 0.14), transparent 22rem),
    linear-gradient(135deg, #fffdfa 0%, #fff1df 100%);
  box-shadow: 0 24px 70px rgba(64, 41, 28, 0.12);
  color: var(--ink);
  overflow: hidden;
}

.privacySeal {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 10px;
}

.privacySeal::before {
  position: absolute;
  inset: 16% 3% auto;
  z-index: 0;
  height: 74%;
  content: "";
  border-radius: 999px;
  background: radial-gradient(circle, rgba(245, 158, 10, 0.3), transparent 68%);
  filter: blur(2px);
}

.privacySeal img {
  position: relative;
  z-index: 1;
  width: min(174px, 100%);
  height: auto;
  filter: drop-shadow(0 18px 24px rgba(178, 87, 11, 0.2));
}

.privacySeal span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border: 1px solid rgba(222, 77, 37, 0.16);
  border-radius: 999px;
  padding: 0 15px;
  color: var(--orange-dark);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.privacyBand h2 {
  max-width: 720px;
  font-size: clamp(2rem, 3.3vw, 3.25rem);
}

.privacyBand p {
  max-width: 680px;
  margin-bottom: 22px;
  color: var(--muted);
}

.privacyProof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.privacyProof span,
.privacyProof strong {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border-radius: 999px;
  padding: 0 13px;
  font-size: 0.86rem;
  font-weight: 800;
}

.privacyProof span {
  color: #9a5b03;
  background: rgba(245, 158, 10, 0.14);
}

.privacyProof strong {
  color: white;
  background: linear-gradient(180deg, var(--capsule-amber), #e88400);
  box-shadow: 0 12px 24px rgba(232, 132, 0, 0.22);
}

.trustList {
  display: grid;
  gap: 10px;
}

.trustItem {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.64);
  border-color: rgba(222, 77, 37, 0.12);
  box-shadow: 0 14px 32px rgba(64, 41, 28, 0.08);
}

.trustItem svg {
  flex: 0 0 auto;
  color: var(--capsule-amber);
}

.useCases {
  padding-top: clamp(54px, 7vw, 84px);
}

.cta {
  display: grid;
  place-items: center;
  text-align: center;
  padding: clamp(72px, 10vw, 118px) 22px;
}

.cta img {
  margin-bottom: 16px;
}

.cta .appStoreBadge {
  margin-bottom: 0;
}

.cta p {
  max-width: 590px;
}

.footer {
  display: grid;
  align-items: center;
  justify-content: center;
  justify-items: center;
  text-align: center;
  gap: 20px;
  border-top: 1px solid rgba(21, 21, 26, 0.08);
  padding: 34px clamp(20px, 4vw, 32px) 46px;
}

.footer p {
  max-width: 620px;
  margin: 14px auto 0;
  font-size: 0.92rem;
}

.footerBrand {
  display: grid;
  justify-items: center;
}

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

.footer .copyright {
  margin: 0;
  color: rgba(21, 21, 26, 0.54);
}

.legalPage {
  min-height: 100vh;
  padding: 34px 20px 90px;
  background:
    radial-gradient(circle at 88% 0%, rgba(255, 255, 255, 0.92), transparent 26rem),
    linear-gradient(180deg, var(--paper), var(--paper-deep));
}

.backLink {
  display: block;
  max-width: 780px;
  margin: 0 auto 42px;
  font-size: 1.25rem;
  font-weight: 780;
}

.legalDoc {
  max-width: 780px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px);
  background: rgba(255, 255, 255, 0.78);
}

.sectionKicker {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 780;
  letter-spacing: 0;
  text-transform: uppercase;
}

.legalDoc h1 {
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 6vw, 4.6rem);
  line-height: 0.98;
}

.legalDoc h2 {
  margin-top: 34px;
  font-size: 1.35rem;
}

.legalDoc h3 {
  margin: 24px 0 8px;
  font-size: 1.08rem;
}

.legalDoc a {
  color: var(--orange-dark);
  font-weight: 760;
}

.legalDoc ul {
  padding-left: 22px;
}

@media (max-width: 940px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .heroGrid,
  .featureCards,
  .stepsGrid,
  .privacyBand {
    grid-template-columns: 1fr;
  }

  .heroGrid {
    padding-top: 34px;
  }

  .heroVisual {
    min-height: 510px;
  }

  .privacySeal {
    max-width: 190px;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: auto;
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 76px;
  }

  .navLinks,
  .footerLinks {
    flex-wrap: wrap;
    gap: 16px;
  }

  h1 {
    font-size: clamp(2.4rem, 10vw, 3.05rem);
  }

  .heroActions,
  .primaryButton,
  .secondaryButton {
    width: 100%;
    max-width: 100%;
  }

  .appStoreBadgeLink {
    justify-content: center;
    width: 100%;
  }

  .heroCopy,
  .heroLead,
  .heroGrid,
  .heroActions {
    width: 100%;
    max-width: 100%;
  }

  .heroVisual {
    width: 100%;
    min-height: 440px;
    overflow: hidden;
  }

  .phoneMockup {
    width: min(280px, calc(100vw - 44px));
    border-width: 10px;
  }

  .appPhone {
    width: min(250px, calc(100vw - 72px));
    border-width: 8px;
  }

  .phoneContent {
    padding-top: 62px;
  }

  .cornerMascot {
    left: -82px;
    bottom: -58px;
    width: 180px;
  }

  .featureCard {
    min-height: auto;
  }

  .featureCard img {
    height: 240px;
  }

}
