:root{
  --bg:#0b0d10;
  --bg2:#0f1216;
  --card: rgba(255,255,255,0.06);
  --card2: rgba(255,255,255,0.08);
  --stroke: rgba(255,255,255,0.10);
  --text:#e9edf2;
  --muted: rgba(233,237,242,0.70);
  --muted2: rgba(233,237,242,0.55);
  --green:#20e36a;
  --green2:#11b955;
  --red:#b83a3a;
  --shadow: 0 20px 60px rgba(0,0,0,0.45);
  --radius: 18px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 700px at 70% 10%, rgba(32,227,106,0.10), transparent 60%),
              radial-gradient(900px 600px at 15% 25%, rgba(255,255,255,0.06), transparent 55%),
              linear-gradient(180deg, var(--bg), var(--bg2));
  color: var(--text);
  overflow-x:hidden;
}

/* Background art */
.bg-splash{
  position:fixed;
  inset:0;
  background-image: url("assets/GolfFrogSplash.png");
  background-repeat:no-repeat;
  background-position: 20% 25%;
  background-size: 1100px auto;
  opacity: 0.16;
  filter: saturate(1.1) contrast(1.05);
  pointer-events:none;
  z-index:0;
}
.bg-watermark {
  position: fixed;
  inset: 0;
  background: url("assets/FrogWatermark.png") center 55% no-repeat;
  background-size: 900px auto;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}


/* Layout helpers */
.wrap{
  width:min(1120px, calc(100% - 48px));
  margin:0 auto;
  position:relative;
  z-index:1;
}

/* Topbar */
.topbar{
  position:sticky;
  top:0;
  z-index:5;
  backdrop-filter: blur(10px);
  background: rgba(10,12,15,0.55);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
}
.brand{
  display:flex;
  gap:12px;
  align-items:center;
}
.brand-dot{
  width:34px;height:34px;
  border-radius: 12px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.35), rgba(255,255,255,0.06)),
              linear-gradient(180deg, rgba(32,227,106,0.85), rgba(17,185,85,0.55));
  box-shadow: 0 10px 25px rgba(32,227,106,0.18);
}
.brand-name{ font-weight:800; letter-spacing:0.14em; font-size:13px; }
.brand-tag{ font-size:12px; color: var(--muted2); margin-top:2px; }

.nav{
  display:flex;
  gap:18px;
  align-items:center;
}
.nav a{
  color: var(--muted);
  text-decoration:none;
  font-size:13px;
}
.nav a:hover{ color: var(--text); }
.pill{
  padding:10px 14px;
  border:1px solid rgba(32,227,106,0.35);
  border-radius: 999px;
  color: var(--text) !important;
  background: rgba(32,227,106,0.10);
}

/* Hero */
.hero{ padding: 64px 0 24px; }
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 44px;
  align-items:center;
}
.eyebrow{
  display:inline-block;
  color: rgba(233,237,242,0.75);
  font-size:12px;
  letter-spacing:0.18em;
  text-transform:uppercase;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.05);
  border-radius: 999px;
}
h1{
  margin: 18px 0 12px;
  font-size: clamp(40px, 4.2vw, 62px);
  line-height: 1.03;
  letter-spacing:-0.02em;
}
.accent{ color: var(--green); text-shadow: 0 0 22px rgba(32,227,106,0.25); }
.subhead{
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  max-width: 52ch;
}
.cta-row{
  display:flex;
  gap:12px;
  margin: 22px 0 10px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  text-decoration:none;
  color: var(--text);
  font-weight:700;
  font-size:14px;
  cursor:pointer;
  background: rgba(255,255,255,0.05);
}
.btn.primary{
  border-color: rgba(32,227,106,0.45);
  background: linear-gradient(180deg, rgba(32,227,106,0.95), rgba(17,185,85,0.78));
  color:#07110a;
  box-shadow: 0 30px 45px rgba(32,227,106,0.18);
}
.btn.primary:hover{ filter: brightness(1.02); }
.btn.ghost:hover{
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
}

/* Disabled buttons (e.g., App Store coming soon) */
.btn.disabled,
.btn[aria-disabled="true"]{
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
  filter: grayscale(0.25);
}
.microtrust{
  margin-top:10px;
  font-size: 12px;
  color: var(--muted2);
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
}
.microtrust .dot{
  width:7px;height:7px;border-radius:99px;
  background: rgba(32,227,106,0.9);
  box-shadow: 0 0 18px rgba(32,227,106,0.35);
}
.microtrust .sep{ opacity:0.5; }

.hero-device{
  position:relative;
}
.device-card{
  border-radius: 28px;
  overflow:hidden;
  border: 25px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  box-shadow: var(--shadow);
}
.device-card img{
  display:block;
  width:100%;
  height:auto;
}
.device-shadow{
  position:absolute;
  inset:auto 8% -26px 8%;
  height: 40px;
  background: radial-gradient(closest-side, rgba(0,0,0,0.55), transparent);
  filter: blur(10px);
}

/* Sections */
.section{ padding: 56px 0; }
.section h2{
  margin:0;
  font-size: 28px;
  letter-spacing:-0.01em;
}
.section-sub{
  margin: 10px 0 0;
  color: var(--muted);
  line-height:1.55;
}

/* Cards */
.cards{
  margin-top: 22px;
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.card{
  padding: 16px 14px 16px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  min-height: 156px;
}
.card-num{
  width:34px;height:34px;
  border-radius: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  background: rgba(32,227,106,0.12);
  border: 1px solid rgba(32,227,106,0.35);
  color: rgba(233,237,242,0.95);
}
.card h3{ margin: 12px 0 8px; font-size: 15px; }
.card p{ margin:0; color: var(--muted2); font-size: 13px; line-height: 1.45; }

/* Screens carousel */
.screens-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:18px;
}
.screens-controls{
  display:flex; gap:10px;
}
.iconbtn{
  width:44px;height:44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  cursor:pointer;
  font-size:16px;
}
.iconbtn:hover{ background: rgba(255,255,255,0.09); }

.screens{
  margin-top: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  overflow:hidden;
}
.screens-track{
  display:flex;
  gap: 14px;
  padding: 16px;
  overflow-x:auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}
.shot{
  flex: 0 0 320px;
  margin:0;
  scroll-snap-align: start;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.35);
}
.shot img{
  width:100%;
  height:auto;
  display:block;
}

/* Beta */
.beta{
  background: linear-gradient(180deg, rgba(32,227,106,0.06), rgba(255,255,255,0.00));
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.beta-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items:start;
}
.bullets{
  margin: 18px 0 0;
  padding:0;
  list-style:none;
  color: var(--muted);
}
.bullets li{
  display:flex;
  gap:10px;
  margin: 10px 0;
  line-height:1.45;
}
.check{
  width:22px;height:22px;
  border-radius: 10px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background: rgba(32,227,106,0.14);
  border: 1px solid rgba(32,227,106,0.35);
  color: rgba(233,237,242,0.95);
  flex: 0 0 22px;
}

.beta-form{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.06);
  box-shadow: var(--shadow);
  padding: 18px;
}
.form .label{
  display:block;
  margin: 10px 0 8px;
  color: rgba(233,237,242,0.85);
  font-size: 13px;
  font-weight: 600;
}
.fieldrow{
  display:flex;
  gap:10px;
  align-items:center;
}
input[type="email"], textarea{
  width:100%;
  background: rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 12px 12px;
  color: var(--text);
  outline:none;
}
input[type="email"]::placeholder, textarea::placeholder{ color: rgba(233,237,242,0.38); }
input[type="email"]:focus, textarea:focus{
  border-color: rgba(32,227,106,0.40);
  box-shadow: 0 0 0 3px rgba(32,227,106,0.12);
}
textarea{ resize: vertical; }

.fineprint{
  margin-top:10px;
  color: rgba(233,237,242,0.55);
  font-size: 12px;
  line-height:1.45;
}
.form-status{
  margin-top: 10px;
  font-size: 13px;
  color: rgba(233,237,242,0.80);
  min-height: 18px;
}
.hp{ display:none; }

/* Footer */
.footer{
  padding: 26px 0 40px;
  color: rgba(233,237,242,0.60);
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:center;
  flex-wrap:wrap;
}
.footer-title{ color: rgba(233,237,242,0.9); font-weight:800; letter-spacing:0.06em; }
.footer-sub{ margin-top:4px; font-size:12px; }
.footer-right a{ color: rgba(233,237,242,0.78); text-decoration:none; }
.footer-right a:hover{ color: var(--text); }
.footer-right .sep{ opacity:0.5; margin: 0 8px; }


/* Download cards */
.download-cards{
  margin-top: 18px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.download-card{
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 18px 50px rgba(0,0,0,0.35);
}
.download-card h3{
  margin: 0 0 8px;
  font-size: 16px;
}
.download-card p{
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: repeat(2, 1fr); }
  .beta-grid{ grid-template-columns: 1fr; }
  .download-cards{ grid-template-columns: 1fr; }
}
@media (max-width: 520px){
  .nav{ display:none; }
  .cards{ grid-template-columns: 1fr; }
  .fieldrow{ flex-direction:column; align-items:stretch; }
  .btn{ width:100%; }
  .bg-splash{ background-position: 40% 20%; background-size: 820px auto; }
  .bg-watermark{ background-position: 60% 60%; background-size: 720px auto; }
}
/* ================================
   GOLFFROG: Screenshot edge haze + single watermark
   Paste at END of styles.css
================================ */

/* ---- A) CLEAN SCREENSHOT EDGES ("haze") ---- */
/* Wrap each screenshot <img> with <div class="shot"> ... */
.shot {
  position: relative;
  display: inline-block;
  border-radius: 28px; /* helps if screenshots have rounded corners */
  overflow: visible;
}

/* The actual screenshot image */
.shot > img {
  display: block;
  width: 100%;
  height: auto;

  /* Soft fade at edges (modern browsers) */
  -webkit-mask-image: radial-gradient(closest-side, rgba(0,0,0,1) 78%, rgba(0,0,0,0) 100%);
  mask-image: radial-gradient(closest-side, rgba(0,0,0,1) 78%, rgba(0,0,0,0) 100%);

  /* Soft lift / depth */
  filter: drop-shadow(0 18px 45px rgba(0, 0, 0, 0.55));
}

/* Optional: subtle atmospheric glow behind the phone */
.shot::before {
  content: "";
  position: absolute;
  inset: -40px;
  border-radius: 48px;
  background: radial-gradient(circle at 55% 40%, rgba(35, 255, 120, 0.10), rgba(0,0,0,0) 60%);
  filter: blur(10px);
  z-index: -1;
  pointer-events: none;
}

/* If you have a "phone frame" image or container, keep it above the glow */
.shot * {
  position: relative;
  z-index: 1;
}


/* ---- B) SINGLE WATERMARK (remove "double frog") ---- */
/* 1) Hide any existing watermark images if your HTML included one */
.watermark,
.frog-watermark,
img[alt*="watermark" i],
img[src*="FrogWatermark" i] {
  display: none !important;
}

/* 2) Add ONE watermark via a single pseudo-element
   IMPORTANT: This targets .hero if your page has it.
   If your hero section uses a different class/id, see note below. */
.hero {
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -10%;
  background-image: url("assets/FrogWatermark.png");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: min(980px, 85vw);
  opacity: 0.085;              /* one frog, subtle */
  transform: rotate(-6deg);
  pointer-events: none;
  z-index: 0;
}

/* Ensure hero content is above the watermark */
.hero > * {
  position: relative;
  z-index: 1;
}

/* If your hero already had a background image, keep it as-is.
   This watermark sits on top but underneath content. */
   /* ===============================
   HOTFIX: single frog + restore screenshots
   Paste at VERY BOTTOM of styles.css
   =============================== */

/* 1) Kill the extra hero watermark (keep the big splash) */
.hero::before { 
  display: none !important; 
}

/* 2) Bring screenshots back (remove the mask that fades them out) */
.shot img,
.shot > img {
  -webkit-mask-image: none !important;
  mask-image: none !important;
  opacity: 1 !important;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,0.45)) !important;
}

/* 3) Make the screenshot frames readable again */
.shot {
  overflow: hidden !important;
  background: rgba(0,0,0,0.18) !important;
  border: 1px solid rgba(255,255,255,0.10) !important;
}

/* 4) Optional subtle “haze” to soften lazy edges (very light) */
.shot::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background: radial-gradient(120% 120% at 50% 35%,
    rgba(255,255,255,0.08) 0%,
    rgba(255,255,255,0.03) 35%,
    rgba(0,0,0,0.00) 70%);
}
.shot img,
.shot > img {
  position: relative;
  z-index: 1;
}
/* ===============================
   Screenshot frame polish (gradual shadow + thicker border)
   Paste at VERY BOTTOM of styles.css
   =============================== */

.shot{
  position: relative !important;            /* needed for ::after */
  overflow: hidden !important;
  border-radius: 26px !important;           /* more “device” */
  padding: 22px !important;                 /* thicker frame */
  background: rgba(0,0,0,0.35) !important;  /* frame fill */
  border: 3px solid rgba(255,255,255,0.14) !important;

  /* soft, gradual outer shadow (layered) */
  box-shadow:
    0 6px 20px rgba(0,0,0,0.35),
    0 26px 80px rgba(0,0,0,0.55) !important;
}

.shot img,
.shot > img{
  display: block !important;
  width: 100% !important;
  height: auto !important;
  border-radius: 18px !important;           /* inside corners */
  opacity: 1 !important;

  /* remove aggressive shadow on the image itself */
  filter: none !important;

  /* IMPORTANT: if you still have the mask hotfix, keep this */
  -webkit-mask-image: none !important;
  mask-image: none !important;
}

/* optional “lens haze” (make it more gradual) */
.shot::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:2;
  background:
    radial-gradient(140% 140% at 45% 25%,
      rgba(255,255,255,0.10) 0%,
      rgba(255,255,255,0.05) 25%,
      rgba(0,0,0,0.00) 60%);
}

/* optional: a tiny inner highlight line (premium look) */
.shot::before{
  content:"";
  position:absolute;
  inset:10px;
  border-radius: 18px;
  pointer-events:none;
  z-index:2;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}

