/* ==========================================================================
   PrintBeyondPaper — shared styles
   Minimal black / white / green aesthetic · Hanken Grotesk
   ========================================================================== */

:root {
  --ink: #111111;          /* primary accent (buttons / brand) */
  --imgf: none;            /* image filter hook (mono toggle, off by default) */
  --maxw: 1240px;
  --pad: 32px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Hanken Grotesk', system-ui, -apple-system, sans-serif;
  color: #111;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.reg { font-size: .55em; vertical-align: super; font-weight: 700; }

/* --------------------------------------------------------------------------
   Scroll-reveal: elements start hidden, .is-visible reveals them.
   A no-JS fallback (below) guarantees content is never trapped hidden.
   -------------------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
[data-reveal].is-visible { opacity: 1; transform: none; }
.no-js [data-reveal] { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { transition: none; }
}

/* ==========================================================================
   NAV
   ========================================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  padding-bottom: 22px;
}
.brand {
  text-decoration: none;
  color: #111;
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -.02em;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav__link {
  text-decoration: none;
  color: #8d8d8d;
  font-weight: 600;
  font-size: 16px;
  transition: color .2s;
}
.nav__link:hover { color: #111; }
.nav__link--active { color: #111; font-weight: 700; }

/* extra tab-width gap before the Cloud Vault item */
.nav__link--vault { margin-left: 2em; }

/* enlarged cloud glyph after "Cloud Vault" */
.nav-cloud {
  font-size: 1.6em;
  line-height: 0;
  vertical-align: 0.04em;
  margin-left: 2px;
}

/* round pill button (nav CTA / hero secondary) */
.btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.btn--pill   { border-radius: 100px; }
.btn--dark   { background: var(--ink, #111); color: #fff; transition: opacity .2s, transform .15s; }
.btn--dark:hover { opacity: .88; transform: translateY(-1px); }
.btn--ghost  { background: #f1f1f1; color: #111; transition: background .2s; }
.btn--ghost:hover { background: #e8e8e8; }
.btn--nav    { font-size: 15px; padding: 12px 22px; }

/* hamburger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.burger span {
  width: 22px;
  height: 2px;
  background: #111;
  border-radius: 2px;
}
.mobile-menu {
  display: none;
  padding: 6px 32px 20px;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid #f0f0f0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  text-decoration: none;
  color: #444;
  font-weight: 600;
  font-size: 17px;
  padding: 10px 0;
}

/* ==========================================================================
   SHARED TYPE / CTA HELPERS
   ========================================================================== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #f1f5f2;
  border: 1px solid #e2ebe4;
  padding: 8px 15px;
  border-radius: 100px;
}
.eyebrow__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #1FB37A;
}
.eyebrow__label {
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: .02em;
  color: #2f7a57;
}

/* ==========================================================================
   MAIN PAGE — HERO
   ========================================================================== */
.hero {
  padding: 70px 32px 40px;
  text-align: center;
  max-width: var(--maxw);
  margin: 0 auto;
}
.hero__title {
  font-weight: 800;
  font-size: clamp(42px, 6.6vw, 86px);
  line-height: 1.04;
  letter-spacing: -.035em;
  margin: 0;
}
.hero__sub {
  font-weight: 600;
  font-size: clamp(17px, 1.9vw, 22px);
  line-height: 1.45;
  color: #6f6f6f;
  max-width: 620px;
  margin: 28px auto 0;
}
.hero__cta { margin-top: 38px; }
.hero__cta .btn { font-size: 17px; padding: 16px 34px; }

.ink-strong { color: #111; }
.ink-soft   { color: #aeaeae; }

.hero__card {
  position: relative;
  margin-top: 64px;
  border-radius: 32px;
  overflow: hidden;
  min-height: 520px;
}
.hero__card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: var(--imgf, none);
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1), filter .6s;
}
.hero__card:hover img { transform: scale(1.05); filter: none; }
.hero__card-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,20,12,.18) 0%, rgba(10,20,12,0) 35%, rgba(10,20,12,.28) 100%);
}
.glass-badge {
  position: absolute;
  left: 28px;
  bottom: 26px;
  display: flex;
  align-items: center;
  gap: 11px;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.35);
  padding: 11px 18px;
  border-radius: 100px;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -.01em;
}
.pulse-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #6ee7a0;
  box-shadow: 0 0 0 4px rgba(110,231,160,.35);
}

/* ==========================================================================
   MAIN PAGE — FEATURES
   ========================================================================== */
.features {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 110px 32px 40px;
  scroll-margin-top: 90px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.feat-row {
  display: grid;
  gap: 56px;
  align-items: center;
}
.feat-row--media-left  { grid-template-columns: 1.05fr .95fr; order: 2; }
.feat-row--media-right { grid-template-columns: .95fr 1.05fr; order: 1; }

.feat-title {
  font-weight: 800;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: -.03em;
  margin: 0 0 18px;
}
.feat-text p,
.benefit p {
  font-weight: 500;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.5;
  color: #9a9a9a;
  margin: 0;
  max-width: 440px;
}

.feat-media {
  border-radius: 32px;
  overflow: hidden;
  min-height: 440px;
  box-shadow: 0 24px 60px rgba(15,30,18,.1);
}
.feat-media img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  display: block;
  filter: var(--imgf, none);
  transition: transform .8s cubic-bezier(.2,.7,.2,1), filter .6s;
}
.feat-media:hover img { transform: scale(1.06); filter: none; }

/* phone mock */
.phone-stage {
  background: #f3f3f3;
  border-radius: 32px;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.phone {
  width: 240px;
  background: #111;
  border-radius: 40px;
  padding: 10px;
  box-shadow: 0 34px 60px rgba(15,30,18,.25);
  transition: transform .45s cubic-bezier(.2,.7,.2,1);
}
.phone:hover { transform: translateY(-8px); }
.phone__screen {
  position: relative;
  background: #fff;
  border-radius: 31px;
  overflow: hidden;
}
.phone__notch {
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 76px; height: 6px;
  background: #e8e8e8;
  border-radius: 6px;
  z-index: 2;
}
.receipt__head {
  padding: 32px 22px 16px;
  text-align: center;
  border-bottom: 1px dashed #e4e4e4;
}
.receipt__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f1f1f1;
  color: #111;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  padding: 5px 11px;
  border-radius: 100px;
  margin-bottom: 13px;
}
.receipt__tag span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #111;
}
.receipt__store { font-weight: 800; font-size: 17px; color: #111; letter-spacing: -.01em; }
.receipt__meta  { font-size: 11px; color: #a4a4a4; margin-top: 3px; font-weight: 600; }

.receipt__body { padding: 16px 22px 4px; }
.receipt__line {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  margin-bottom: 9px;
  color: #555;
  font-weight: 600;
}
.receipt__line span:last-child { color: #111; font-weight: 800; }

.receipt__sub {
  border-top: 1px dashed #e4e4e4;
  margin-top: 12px;
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  margin-bottom: 7px;
  color: #777;
  font-weight: 600;
}
.receipt__sub span:last-child,
.receipt__tax span:last-child { color: #333; font-weight: 700; }
.receipt__tax {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  margin-bottom: 9px;
  color: #777;
  font-weight: 600;
}
.receipt__total {
  border-top: 1px dashed #e4e4e4;
  padding-top: 11px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.receipt__total span:first-child { font-weight: 800; font-size: 13px; color: #111; }
.receipt__total span:last-child  { font-weight: 800; font-size: 19px; color: #111; }

.receipt__qrwrap { display: flex; justify-content: center; padding: 14px 0 8px; }
.qr {
  width: 88px; height: 88px;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 10px;
  padding: 8px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(7, 1fr);
  gap: 2px;
}
.qr span { background: transparent; }
.qr span.on { background: #111; }
.receipt__foot { text-align: center; padding: 0 0 22px; font-size: 11px; color: #9a9a9a; font-weight: 700; }

/* ==========================================================================
   MAIN PAGE — BENEFITS
   ========================================================================== */
.benefits {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 120px 32px 40px;
  scroll-margin-top: 90px;
}
.benefits__lead {
  text-align: center;
  max-width: 920px;
  margin: 0 auto 76px;
}
.benefits__lead h2 {
  font-weight: 800;
  font-size: clamp(30px, 4.4vw, 56px);
  line-height: 1.08;
  letter-spacing: -.03em;
  margin: 0;
}
.benefit-row {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 56px;
  align-items: center;
}
.benefit h3 {
  font-weight: 800;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.05;
  letter-spacing: -.03em;
  margin: 0 0 18px;
}
.benefit p { max-width: 420px; }
.benefit-media {
  border-radius: 32px;
  overflow: hidden;
  min-height: 460px;
  box-shadow: 0 24px 60px rgba(15,30,18,.1);
}
.benefit-media img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  display: block;
  filter: var(--imgf, none);
  transition: transform .8s cubic-bezier(.2,.7,.2,1), filter .6s;
}
.benefit-media:hover img { transform: scale(1.06); filter: none; }

/* ==========================================================================
   MAIN PAGE — NEWSLETTER / CONTACT
   ========================================================================== */
.contact {
  padding: 120px 32px 110px;
  text-align: center;
  scroll-margin-top: 90px;
}
.contact__inner { max-width: 640px; margin: 0 auto; }
.contact h2 {
  font-weight: 800;
  font-size: clamp(36px, 5.2vw, 68px);
  line-height: 1.04;
  letter-spacing: -.035em;
  margin: 0;
}
.signup {
  margin: 44px auto 0;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.signup input {
  font-family: inherit;
  font-weight: 500;
  font-size: 17px;
  padding: 17px 22px;
  border: 1px solid transparent;
  background: #f0f0f0;
  border-radius: 14px;
  outline: none;
  color: #111;
  text-align: center;
  transition: border-color .2s, background .2s;
}
.signup input:focus { border-color: #111; background: #fff; }
.signup button {
  font-family: inherit;
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  background: var(--ink, #111);
  border: none;
  padding: 17px;
  border-radius: 14px;
  cursor: pointer;
  transition: opacity .2s, transform .15s;
}
.signup button:hover { opacity: .9; transform: translateY(-2px); }
.signup-done {
  margin: 44px auto 0;
  max-width: 440px;
  background: #f3f3f3;
  border-radius: 16px;
  padding: 26px;
}
.signup-done__title { font-weight: 800; font-size: 20px; color: #111; margin-bottom: 6px; }
.signup-done__sub   { font-weight: 500; font-size: 16px; color: #9a9a9a; }
.contact__alt {
  font-weight: 500;
  font-size: 15px;
  color: #b3b3b3;
  margin: 24px 0 0;
}
.contact__alt a { color: #6f6f6f; text-decoration: none; font-weight: 600; }

/* ==========================================================================
   FOOTER (shared)
   ========================================================================== */
.footer { border-top: 1px solid #f0f0f0; padding: 44px 32px; }
.footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
.footer__brand { max-width: 360px; }
.footer__logo { font-weight: 800; font-size: 18px; letter-spacing: -.02em; margin-bottom: 10px; }
.footer__addr { font-weight: 500; font-size: 14px; line-height: 1.6; color: #9a9a9a; margin: 0; }
.footer__links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer__links a { text-decoration: none; color: #8d8d8d; font-weight: 600; font-size: 14px; }
.footer__copy {
  max-width: var(--maxw);
  margin: 28px auto 0;
  font-weight: 500;
  font-size: 13px;
  color: #c0c0c0;
}

/* ==========================================================================
   CLOUD VAULT PAGE
   ========================================================================== */
.btn--home {
  background: var(--ink, #111);
  color: #fff;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: 100px;
  transition: opacity .2s, transform .15s;
}
.btn--home:hover { opacity: .88; transform: translateY(-1px); }
.btn--home .arrow { font-size: 17px; line-height: 1; }

.vault-hero {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 70px 32px 30px;
}
.vault-hero__grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 60px;
  align-items: center;
}
.vault-hero__title {
  font-weight: 800;
  font-size: clamp(40px, 5.6vw, 74px);
  line-height: 1.03;
  letter-spacing: -.035em;
  margin: 26px 0 0;
}
.vault-hero__sub {
  font-weight: 500;
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.5;
  color: #6f6f6f;
  max-width: 480px;
  margin: 26px 0 0;
}
.vault-hero__cta {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.vault-hero__cta .btn { font-size: 16px; padding: 15px 30px; }
.btn--dark.btn--lift { transition: transform .15s, opacity .2s; }
.btn--dark.btn--lift:hover { transform: translateY(-2px); opacity: .9; }

.vault-hero__media {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  min-height: 460px;
  box-shadow: 0 28px 64px rgba(15,30,18,.14);
}
.vault-hero__media img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  display: block;
  transition: transform .9s cubic-bezier(.2,.7,.2,1);
}
.vault-hero__media:hover img { transform: scale(1.05); }
.vault-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,16,28,.32), rgba(8,16,28,.05) 40%, rgba(8,16,28,.34));
}
.vault-hero__badge {
  position: absolute;
  left: 24px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 11px;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.35);
  padding: 11px 18px;
  border-radius: 100px;
  color: #fff;
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: -.01em;
}

/* feature cards */
.vault-cards {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 90px 32px 30px;
}
.vault-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.vcard {
  border-radius: 24px;
  padding: 40px 36px;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s;
}
.vcard:hover { transform: translateY(-5px); box-shadow: 0 20px 44px rgba(15,30,18,.1); }
.vcard--gray  { background: #f6f7f6; border: 1px solid #ececec; }
.vcard--green { background: #f1f6f3; border: 1px solid #e2ece6; }
.vcard--dark  { background: #111; color: #fff; }
.vcard--dark:hover { box-shadow: 0 20px 44px rgba(15,30,18,.22); }
.vcard__icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 22px;
}
.vcard--gray  .vcard__icon { background: #fff; border: 1px solid #e6e6e6; }
.vcard--green .vcard__icon { background: #fff; border: 1px solid #dcebe2; }
.vcard--dark  .vcard__icon { background: rgba(255,255,255,.1); }
.vcard h2 {
  font-weight: 800;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin: 0 0 12px;
}
.vcard p {
  font-weight: 500;
  font-size: 16.5px;
  line-height: 1.55;
  color: #6f6f6f;
  margin: 0;
}
.vcard--dark p { color: #b9bdc4; }

/* capability strip */
.vault-stats {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 70px 32px 30px;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.stat { text-align: center; padding: 20px; }
.stat__num {
  font-weight: 800;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -.03em;
  color: #111;
}
.stat__label { font-weight: 600; font-size: 14.5px; color: #9a9a9a; margin-top: 4px; }

/* CTA */
.vault-cta {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 80px 32px 100px;
}
.cta-panel {
  background: #f3f3f3;
  border-radius: 32px;
  padding: clamp(40px, 6vw, 72px);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
}
.cta-panel h2 {
  font-weight: 800;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -.03em;
  margin: 0;
}
.cta-panel p {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  color: #777;
  margin: 18px 0 0;
  max-width: 460px;
}
.cta-actions { display: flex; flex-direction: column; gap: 14px; }
.cta-actions .btn {
  font-size: 17px;
  padding: 17px;
  border-radius: 14px;
}
.cta-actions .btn--dark.btn--lift:hover { transform: translateY(-2px); opacity: .9; }
.cta-actions .btn--outline {
  background: #fff;
  color: #111;
  border: 1px solid #e2e2e2;
  transition: background .2s;
}
.cta-actions .btn--outline:hover { background: #fafafa; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 860px) {
  .nav__links { display: none; }
  .burger { display: flex; }

  .feat-row { grid-template-columns: 1fr !important; gap: 24px; }
  .feat-text { order: 2; }
  .benefit-row { grid-template-columns: 1fr; gap: 28px; }
  .hero__card { min-height: 360px; }

  .vault-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .vault-hero__grid { grid-template-columns: 1fr; gap: 36px; }
  .cta-panel { grid-template-columns: 1fr; gap: 28px; }
}
