:root{
  --max: 1100px;
  --pad: 24px;

  --bg: #ffffff;
  --text: #0b0b0b;
  --muted: #5f6368;
  --border: #e7e7e7;
  --soft: #f7f7f8;

  --accent: #111111;
  --success: #118c4f;
}

*{ box-sizing:border-box; }

body{
  margin:0;
  font-family:-apple-system, BlinkMacSystemFont, Inter, "Segoe UI", Roboto, Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.5;
}

a{ color:inherit; }
a:hover{ opacity:.9; }

.container{
  max-width:var(--max);
  margin:0 auto;
  padding:0 var(--pad);
}

/* Header */
.header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.9);
  backdrop-filter:saturate(180%) blur(12px);
  border-bottom:1px solid var(--border);
}
.header__inner{
  position:relative;
  height:68px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.brand{
  font-weight:750;
  letter-spacing:-0.02em;
  text-decoration:none;
  font-size:18px;
}
.navToggle{
  display:none;
  border:1px solid var(--border);
  background:#fff;
  border-radius:12px;
  padding:10px 12px;
  font-size:18px;
  line-height:1;
}
.nav{
  display:flex;
  align-items:center;
  gap:14px;
}
.nav a{
  text-decoration:none;
  font-weight:600;
  font-size:14px;    
  color:var(--text);
  opacity:.85;
}
.nav__portal{
  border:1px solid var(--border);
  padding:8px 12px;
  border-radius:12px;
}

.nav__secondary{
  font-weight:500;
  opacity:.7;
}

/* Section */
.section{
  padding:20px 0;
}

.section + .section{
  padding-top: 0;
}

.section--narrow{
  max-width:900px;
  margin:0 auto;
}

/* Typography */
h1{
  font-size:44px;
  letter-spacing:-0.03em;
  line-height:1.06;
  margin:0 0 14px;
}
h2{
  font-size:28px;
  letter-spacing:-0.02em;
  margin:0 0 12px;
}
h3{
  font-size:18px;
  margin:0 0 10px;
}
h4{
  font-size:16px;
  margin:0 0 8px;
}
/* .why h4{
  color: var(--text);       
  font-weight: 650;        
  letter-spacing: -0.01em;
  margin-bottom: 8px;
} */
.lead{
  font-size:18px;
  color:var(--text);
  margin:0;
  max-width:760px;
}
.eyebrow{
  margin-top:10px;
  font-size:16px;
  font-weight:600;
  color:var(--muted);
  letter-spacing:.01em;
}
.fineprint{
  font-size:13px;
  color:var(--muted);
}
.capability{
  margin-top:12px;
  margin-bottom: 0px;
  font-size:15px;
  font-weight:600;
  color:var(--text);
}
.mission{
  font-weight:600;
  margin-top:14px;
}

.reward-note{
  margin-top:10px;
  padding-top:10px;
  max-width:920px;

  font-size:13px;
  color:var(--muted);

  border-top:1px dashed var(--border);
}

/*  Wordmark  */
.wordmark{
  display:inline-flex;
  align-items:baseline;
  font-family:"Montserrat", -apple-system, BlinkMacSystemFont, Inter, "Segoe UI", Roboto, Arial, sans-serif;
  letter-spacing:-0.02em;
  line-height:1;
}

.wordmark__owner{
  font-weight:400; /* Regular */
}

.wordmark__tags{
  font-weight:600; /* SemiBold */
  margin-left:0px; /* optical spacing */
}

/* Smaller version for footer */
.wordmark--small{
  font-size:14px;
}

/* Hero “Why OwnerTags” block */
.why{
  margin-top:28px;
  padding-top:20px;
  border-top:1px solid var(--border);
  max-width:620px;
}

.why h4{
  margin:0 0 8px;
  font-size:14px;
  font-weight:700;
  letter-spacing:.01em;
  /* text-transform:uppercase; */
  color:var(--text);
}

.why p{
  margin:0 0 10px;     
  font-size:16px;
  /* line-height:1.55; */
  color:var(--text);
}

.why p:last-of-type{
  margin-bottom:14px;  /* restore breathing room before link */
}

.whyLink{
  display:inline-flex;
  align-items:center;
  gap:8px;

  margin-top:10px;
  font-weight:650;
  text-decoration:none;

  opacity:.9;
  border-bottom:1px solid rgba(0,0,0,.22);
  padding-bottom:2px;
}

.whyLink:hover{
  opacity:1;
  border-bottom-color: rgba(0,0,0,.5);
}

.whyLink span{
  transition: transform .15s ease;
}

.whyLink:hover span{
  transform: translateX(2px);
}

.whyLink:focus-visible{
  outline:2px solid rgba(0,0,0,.35);
  outline-offset:4px;
  border-bottom-color: transparent;
  border-radius:8px;
}

/* inineLinks */
.inlineLink{
  font-weight:600;
  text-decoration:none;
  border-bottom:1px solid rgba(0,0,0,.25);
  padding-bottom:1px;
}

.inlineLink:hover{
  border-bottom-color: currentColor;
}

/* Better spacing for content pages (privacy, how it works, etc.) */
.prose h2, .prose h3{
  margin-top: 18px;
  margin-bottom: 10px;
}

.prose p{
  margin: 0 0 14px;
}

.prose ul{
  margin: 0 0 16px;
  padding-left: 20px;
}

.prose li{
  margin: 6px 0;
}

.prose > :first-child{
  margin-top: 0;
}
/* Layout blocks */
.hero{
  padding:64px 0;
  display:grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap:42px;
  align-items:center;
}

.card{
  border:1px solid var(--border);
  border-radius:20px;
  padding:22px;
  background:#fff;
  box-shadow:0 12px 30px rgba(0,0,0,.06);
}

.card + .card{
  margin-top:28px;
}

.mutedBlock p{
  color: var(--muted);
}

.grid3{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:18px;
  margin-top:34px;
}
.grid2{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:18px;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  background:var(--soft);
  border:1px solid var(--border);
  font-weight:650;
  font-size:13px;
  color:var(--text);
}
.badge__dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--success);
}

/* Buttons */
.ctaRow{
  margin-top:14px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius:14px;
  padding:13px 16px;
  text-decoration:none;
  font-weight:700;
  border:1px solid var(--accent);
  background:var(--accent);
  color:#fff;
}
.btn--ghost{
  background:transparent;
  color:var(--text);
}
.btn--small{
  padding:8px 12px;
  font-size:14px;
  border-radius:10px;
}
.btn:disabled, button:disabled{
  opacity:.55;
  cursor:not-allowed;
}

/* Forms */
form{ max-width:520px; }
label{
  display:block;
  font-weight:650;
  margin:14px 0 6px;
}
input, select{
  width:100%;
  padding:12px 14px;
  border-radius:12px;
  border:1px solid var(--border);
  font-size:15px;
}
input:focus, select:focus{
  outline:none;
  border-color:#b8b8b8;
}

.alert{
  border:1px solid var(--border);
  background:var(--soft);
  border-radius:16px;
  padding:14px 16px;
  margin-top:14px;
}

.checkRow{
  display:grid;
  grid-template-columns:18px 1fr;
  gap:12px;
  align-items:start;
  margin-top:12px;
}

.checkLabel{
  font-weight:550;
  line-height:1.4;
  margin-top:1px;  
}

.bullets{
  margin:12px 0 0;
  padding-left:18px;
  color:var(--muted);
}

/* main page tag image (no card) */
.tagFloat{
  display:flex;
  flex-direction:column;
  align-items:center;
}

.tagPair{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:28px;
}

.tagStatic{
  width:100%;
  max-width:250px;
  aspect-ratio: 3 / 4;
  object-fit:contain;

  border:none;
  background:transparent;

  filter: drop-shadow(0 40px 90px rgba(0,0,0,.22))
          drop-shadow(0 16px 36px rgba(0,0,0,.14));
}

.tagFront{
  transform: perspective(800px) rotateY(-4deg);
}

.tagBack{
  transform: perspective(800px) rotateY(4deg) translateY(-12px) scale(0.96);
  opacity: .96;
}

.tagCaption{
  margin-top:12px;
  text-align:center;
}

@media (max-width: 720px){
  .tagPair{ gap:18px; }
  .tagFront, .tagBack{ transform:none; } /* optional */
}

/* Footer */
.footer{
  border-top:1px solid var(--border);
  margin-top:80px;
}

.footer .container{
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* The inner footer content should NEVER go full-bleed */
.footer__inner{
  padding: 22px 0;
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:12px;

  max-width: 900px;   /* pulls it inward */
  margin: 0 auto;     /* centers within container */
  flex-wrap: nowrap;
}

.footer__left{
  min-width: 0;               /* 👈 allows flex item to shrink */
  flex: 1 1 auto;             /* 👈 take remaining space */
}

.footer__right{
  flex: 0 0 auto;             /* 👈 don’t shrink */
  white-space: nowrap;        /* 👈 keep “Privacy” on one line */
}

.footer__right a{ opacity:.85; }

.footer__tagline{
  font-size:13px;
  color:var(--muted);
}

@media (max-width: 520px){
  .footer__inner{
    flex-direction: row;     /* keep it a row */
    align-items: flex-start;
    gap: 12px;
  }

  .footer__right{
    margin-left: auto;       /* push Privacy to the far right */
  }
}

.textarea{
  width:100%;
  padding:12px 14px;
  border-radius:12px;
  border:1px solid var(--border);
  font-size:15px;
  line-height:1.5;
  resize:vertical;
}

.textarea:focus{
  outline:none;
  border-color:#b8b8b8;
}

.fieldHelp{
  display:flex;
  align-items:center
  gap:10px
  width:100%;
  margin-top:8px;
  font-size:13px;
  color:var(--muted);
}

.fieldHelp .counter{
  margin-left:12px;  /* keep it near help text */
}

.counter{ font-weight:650; }
.counter--bad{ color:#c62828; }
.counter--good{ color:#118c4f; }

/* Responsive */
@media (max-width: 900px){
  h1{ font-size:36px; }
  .hero{ grid-template-columns:1fr; padding:48px 0; }
  .grid3{ grid-template-columns:1fr; }
  .grid2{ grid-template-columns:1fr; }
  .nav{ gap:12px; }
}

@media (max-width: 720px){
  .navToggle{ display:inline-flex; }

  .nav{
    display:none;
    position:fixed;
    top:68px;
    left:var(--pad);
    right:var(--pad);
    flex-direction:column;
    gap:10px;
    padding:14px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:18px;
    box-shadow:0 18px 40px rgba(0,0,0,.10);
    z-index:9999;
  }

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

  .nav a{
    display:block;
    width:100%;
    text-align:center;
    padding:12px 12px;
    border-radius:12px;
    font-weight:650;
  }

  .nav a:active{
    background: var(--soft);
  }
}

