:root{
  --bg: #7fd0ff;
  --bg2: #9bdcff;
  --ink: #07324a;
  --inkSoft: rgba(7, 50, 74, .72);
  --card: rgba(255,255,255,.88);
  --card2: rgba(255,255,255,.78);
  --shadow: 0 18px 50px rgba(0,0,0,.12);
  --shadow2: 0 10px 30px rgba(0,0,0,.12);
  --radius: 18px;
  --radius2: 26px;
  --max: 1100px;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: linear-gradient(135deg, var(--bg), var(--bg2));
}

a{ color: inherit; text-decoration: none; }
.container{ width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

.topbar{
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,.18);
  border-bottom: 1px solid rgba(255,255,255,.22);
}
.topbar-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.brand{
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: .2px;
}
.brand-mark{
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255,255,255,.55);
  box-shadow: var(--shadow2);
}
.brand-name{ font-size: 16px; }

.nav{
  display: flex;
  gap: 14px;
  align-items: center;
  font-weight: 650;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  height: 34px;   /* matches nav height nicely */
  width: auto;
  display: block;
}


.nav a{ opacity: .9; }
.nav a:hover{ opacity: 1; }

.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,.55);
  background: rgba(255,255,255,.7);
  box-shadow: var(--shadow2);
  font-weight: 800;
}
.btn:hover{ transform: translateY(-1px); }
.btn:active{ transform: translateY(0px); }

.btn-ghost{
  background: rgba(255,255,255,.25);
}
.btn-small{
  padding: 10px 14px;
}

.hero{
  padding: 46px 0 28px;
}
.hero-inner{
  display: grid;
  gap: 24px;
  grid-template-columns: 1.2fr .8fr;
  align-items: center;
}
.hero h1{
  margin: 0 0 10px;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.05;
}
.hero-sub{
  margin: 0 0 18px;
  color: var(--inkSoft);
  font-size: 16px;
  line-height: 1.55;
  max-width: 52ch;
}
.hero-cta{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.hero-badges{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.pill{
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.25);
  border: 1px solid rgba(255,255,255,.28);
  font-weight: 750;
  font-size: 13px;
}

.phone-card{
  border-radius: var(--radius2);
  overflow: hidden;
  background: rgba(255,255,255,.26);
  border: 1px solid rgba(255,255,255,.35);
  box-shadow: var(--shadow);
}
.hero-shot{
  width: 100%;
  height: auto;
  display: block;
}
.caption{
  margin: 10px 0 0;
  text-align: center;
  color: rgba(7,50,74,.75);
  font-weight: 650;
}

.section{
  padding: 48px 0;
}
.section-soft{
  background: rgba(255,255,255,.12);
  border-top: 1px solid rgba(255,255,255,.22);
  border-bottom: 1px solid rgba(255,255,255,.22);
}
.section h2{
  margin: 0 0 8px;
  font-size: clamp(22px, 2.3vw, 32px);
}
.section-sub{
  margin: 0 0 20px;
  color: var(--inkSoft);
  max-width: 70ch;
}

.grid{
  display: grid;
  gap: 16px;
}
.features{
  grid-template-columns: repeat(3, 1fr);
}
.card{
  background: var(--card);
  border: 1px solid rgba(255,255,255,.55);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow2);
}
.card h3{ margin: 0 0 8px; }
.card p{ margin: 0; color: var(--inkSoft); line-height: 1.5; }

.shots{
  grid-template-columns: repeat(4, 1fr);
}
.shot{
  text-align: left;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.shot img{
  width: 100%;
  height: 420px;          /* ?? taller */
  object-fit: contain;    /* ?? NO CROPPING */
  background: rgba(255,255,255,.25); /* subtle frame */
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.55);
  box-shadow: var(--shadow2);
  display: block;
}
.shot span{
  display: inline-block;
  margin-top: 10px;
  font-weight: 800;
  opacity: .9;
}

.cta{
  margin-top: 26px;
  padding: 22px;
  border-radius: var(--radius2);
  background: rgba(255,255,255,.22);
  border: 1px solid rgba(255,255,255,.28);
  box-shadow: var(--shadow2);
}
.cta h3{ margin: 0 0 6px; }
.cta p{ margin: 0 0 14px; color: var(--inkSoft); }
.cta-actions{ display: flex; gap: 12px; flex-wrap: wrap; }

.prose ul{
  margin: 10px 0 0;
  padding-left: 18px;
}
.muted{ opacity: .75; }

.footer{
  padding: 28px 0 36px;
}
.footer-inner{
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
.brand-foot{
  font-weight: 900;
  font-size: 16px;
}
.footer-links{
  display: flex;
  gap: 14px;
  font-weight: 700;
  opacity: .9;
}

/* Lightbox */
.lightbox{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 50;
}
.lightbox.open{ display: flex; }
.lightbox-inner{
  width: min(520px, 100%);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.65);
  box-shadow: 0 24px 70px rgba(0,0,0,.35);
  position: relative;
}
.lightbox-inner img{
  width: 100%;
  height: auto;
  display: block;
}
.lightbox-close{
  position: absolute;
  top: 10px;
  right: 10px;
  border: 0;
  border-radius: 999px;
  padding: 10px 12px;
  cursor: pointer;
  background: rgba(255,255,255,.8);
  font-weight: 900;
}

/* Responsive */
@media (max-width: 980px){
  .hero-inner{ grid-template-columns: 1fr; }
  .features{ grid-template-columns: repeat(2, 1fr); }
  .shots{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px){
  .nav{ display: none; }
  .features{ grid-template-columns: 1fr; }
  .shots{ grid-template-columns: 1fr; }
  .shot img{ height: 280px; }
  .footer-inner{ flex-direction: column; align-items: flex-start; }
}

/* ===========================
   Contact Form (Guard Log)
   =========================== */

/* Make the card a comfy readable width, but still wide inputs */
.card.prose{
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}

/* If your form uses <p> wrappers, remove the “narrow” feel */
.card.prose form p{
  margin: 0 0 14px;
  max-width: 100%;
}

/* Label styling */
.card.prose label{
  font-weight: 800;
  color: var(--ink);
}

/* Inputs + textarea: full width */
.card.prose input,
.card.prose textarea{
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;

  padding: 12px 12px;
  border-radius: 14px;

  background: rgba(255,255,255,.92);   /* matches your glassy look */
  color: var(--ink);

  border: 1px solid rgba(255,255,255,.65);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.65);

  font: inherit;
  outline: none;

  padding-right: 44px; /* room for browser autofill/password icons */
}

/* Bigger message box */
.card.prose textarea{
  min-height: 220px;
  resize: vertical;
  line-height: 1.55;
}

/* Focus ring using your palette */
.card.prose input:focus,
.card.prose textarea:focus{
  border-color: rgba(51, 204, 204, .85);     /* your accent */
  box-shadow:
    0 0 0 4px rgba(51, 204, 204, .18),
    inset 0 1px 0 rgba(255,255,255,.65);
}

/* Button spacing */
.card.prose button.btn{
  margin-top: 6px;
}

/* Success notice (matches your existing notice styles) */
.notice{
  padding: 12px 14px;
  border-radius: 14px;
  margin-bottom: 14px;
  border: 1px solid rgba(255,255,255,.55);
  box-shadow: var(--shadow2);
  background: rgba(255,255,255,.55);
  font-weight: 750;
}

.notice-success{
  background: rgba(34, 197, 94, .15);
  border-color: rgba(34, 197, 94, .35);
}

