
:root{
  --blue:#003f96;
  --blue2:#06285f;
  --green:#4aa51f;
  --green2:#2f8f18;
  --text:#14243f;
  --muted:#647086;
  --soft:#eef9ff;
  --white:#fff;
  --shadow:0 18px 45px rgba(6,40,95,.13);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  color:var(--text);
  background:linear-gradient(180deg,#f6fbff,#fff 40%,#f7fff2);
}
img{display:block;max-width:100%;height:auto}
a{text-decoration:none}
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:24px;
  align-items:center;
  padding:10px clamp(16px,4vw,58px);
  background:rgba(255,255,255,.96);
  border-bottom:1px solid rgba(0,63,150,.08);
  backdrop-filter:blur(12px);
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  color:var(--blue);
  font-weight:950;
}
.brand img{
  width:92px;
  height:72px;
  object-fit:contain;
}
.brand span{
  font-size:1.15rem;
  white-space:nowrap;
}
.main-nav{
  display:flex;
  justify-content:center;
  gap:24px;
  flex-wrap:wrap;
}
.main-nav a{
  color:var(--blue2);
  font-weight:900;
}
.main-nav a:hover{color:var(--green)}
.header-cta,.btn-primary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:0;
  border-radius:999px;
  background:var(--green);
  color:#fff;
  padding:16px 26px;
  font-weight:950;
  box-shadow:0 12px 24px rgba(74,165,31,.20);
}
.btn-blue{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:var(--blue);
  color:#fff;
  padding:16px 26px;
  font-weight:950;
  box-shadow:var(--shadow);
}
.btn-white{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:#fff;
  color:var(--blue);
  padding:16px 26px;
  font-weight:950;
  border:2px solid #e1e9f4;
}
.hero{
  width:min(1370px,94%);
  margin:38px auto 48px;
  display:grid;
  grid-template-columns:1fr .95fr;
  gap:42px;
  align-items:center;
}
.hero-left{padding:20px 0}
.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:#edf8e8;
  color:#2b771c;
  border:1px solid rgba(74,165,31,.22);
  padding:10px 16px;
  border-radius:999px;
  font-weight:950;
  margin:0 0 14px;
}
.hero h1{
  color:var(--blue);
  font-size:clamp(3.2rem,6vw,6.5rem);
  line-height:.9;
  letter-spacing:-.06em;
  margin:16px 0 22px;
}
.hero h1 span{color:var(--green)}
.hero p{
  color:var(--muted);
  font-size:clamp(1.12rem,2vw,1.4rem);
  line-height:1.62;
  max-width:780px;
}
.hero-actions{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  margin-top:30px;
}
.hero-visual{
  background:#fff;
  padding:14px;
  border-radius:34px;
  box-shadow:var(--shadow);
}
.hero-visual img{
  border-radius:26px;
}
.mini-features{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  margin-top:32px;
}
.mini-card{
  background:#fff;
  border:1px solid #e4ecf7;
  border-radius:24px;
  min-height:106px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  box-shadow:0 10px 24px rgba(6,40,95,.05);
  text-align:center;
  color:var(--blue);
  font-weight:950;
  padding:14px;
}
.mini-card span{font-size:1.7rem;margin-bottom:8px}
.section{
  width:min(1280px,94%);
  margin:70px auto;
}
.section-title{
  max-width:900px;
  margin:0 auto 30px;
  text-align:center;
}
.section-title h2{
  color:var(--blue);
  font-size:clamp(2.2rem,4.5vw,4.2rem);
  line-height:1;
  margin:0 0 14px;
}
.section-title p{
  color:var(--muted);
  font-size:1.08rem;
  line-height:1.62;
}
.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.card{
  background:#fff;
  border:1px solid #e5edf8;
  border-radius:30px;
  padding:30px;
  box-shadow:var(--shadow);
}
.icon-bubble{
  width:70px;
  height:70px;
  border-radius:22px;
  background:var(--green);
  color:#fff;
  display:grid;
  place-items:center;
  font-size:2rem;
  margin-bottom:22px;
}
.card h3{
  color:var(--blue);
  font-size:1.5rem;
  margin:0 0 12px;
}
.card p{
  color:var(--muted);
  line-height:1.65;
  margin:0;
}
.group-panel{
  display:grid;
  grid-template-columns:1.4fr .6fr;
  gap:32px;
  align-items:center;
  background:linear-gradient(135deg,var(--blue),#06285f);
  color:#fff;
  border-radius:34px;
  padding:42px;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.group-panel h2{
  font-size:clamp(2.2rem,4.2vw,4.4rem);
  line-height:1;
  margin:0 0 18px;
}
.group-panel p{
  line-height:1.6;
  opacity:.92;
  font-size:1.08rem;
}
.qr-box{
  background:#fff;
  border-radius:26px;
  padding:28px;
  color:var(--blue);
  text-align:center;
}
.qr-box img{
  width:260px;
  margin:auto;
}
.partner-box{
  max-width:900px;
  margin:34px auto 0;
  background:#fff;
  border:1px solid #e5edf8;
  border-radius:32px;
  padding:38px;
  box-shadow:var(--shadow);
  text-align:center;
}
.partner-box h3{
  color:var(--blue);
  font-size:clamp(1.8rem,3vw,2.7rem);
  margin:0 0 14px;
}
.partner-box p{
  color:var(--muted);
  line-height:1.7;
}
.footer{
  background:#06285f;
  color:#fff;
  padding:44px clamp(16px,4vw,58px);
}
.footer-content{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:22px;
  flex-wrap:wrap;
}
.footer img{
  width:100px;
  height:70px;
  object-fit:contain;
  background:#fff;
  border-radius:14px;
  padding:4px;
}
.mobile-bottom-nav{display:none}

/* Reporter page */
.reporter-hero{
  width:min(1320px,94%);
  margin:34px auto 36px;
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:36px;
  align-items:center;
}
.reporter-visual{
  background:#fff;
  padding:14px;
  border-radius:34px;
  box-shadow:var(--shadow);
}
.reporter-visual img{border-radius:26px}
.steps{display:grid;gap:14px;margin-top:30px}
.step{
  display:flex;
  align-items:center;
  gap:16px;
  background:#fff;
  border:1px solid rgba(0,63,150,.08);
  border-radius:24px;
  padding:18px;
  box-shadow:0 12px 28px rgba(6,40,95,.07);
}
.step b{
  flex:0 0 46px;
  width:46px;
  height:46px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:var(--green);
  color:#fff;
  font-size:1.2rem;
}
.step span{color:var(--blue2);font-weight:850;font-size:1.05rem}
.form-card{
  width:min(1320px,94%);
  margin:40px auto 70px;
  background:#fff;
  border-radius:34px;
  padding:34px;
  box-shadow:var(--shadow);
}
.form-title{text-align:center;max-width:820px;margin:0 auto 24px}
.form-title h2{
  color:var(--blue);
  font-size:clamp(2rem,4vw,4rem);
  line-height:1;
  margin:10px 0;
}
.form-title p{color:var(--muted)}
.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr 2fr;
  gap:22px;
  align-items:start;
}
label{display:block;color:var(--blue2);font-weight:900}
input,select,textarea{
  width:100%;
  margin-top:8px;
  padding:15px 16px;
  border:1px solid #cddaea;
  border-radius:17px;
  font:inherit;
  background:#fff;
  outline:none;
}
input:focus,select:focus,textarea:focus{
  border-color:var(--blue);
  box-shadow:0 0 0 4px rgba(0,63,150,.08);
}
.message{grid-column:3;grid-row:1 / span 2}
textarea{min-height:183px;resize:vertical}
.photo-box{
  grid-column:1 / span 2;
  min-height:280px;
  background:#eef9ff;
  border:2px dashed rgba(0,63,150,.20);
  border-radius:28px;
  padding:26px;
}
.photo-box p{color:var(--text);line-height:1.6;margin:18px 0 0}
.photo-box input[type=file]{background:#fff}
.submit-box{
  grid-column:3;
  min-height:280px;
  background:var(--green);
  border-radius:28px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:26px;
  box-shadow:0 14px 30px rgba(74,165,31,.18);
}
.submit-box button{
  width:100%;
  min-height:110px;
  border:0;
  border-radius:22px;
  background:transparent;
  color:#fff;
  font-size:2rem;
  font-weight:950;
  cursor:pointer;
}
.submit-box button:disabled{opacity:.6;cursor:wait}
.status{color:#fff;text-align:center;font-weight:900}
.preview{
  margin-top:22px;
  background:#f5fbff;
  border:1px solid #d8e6f6;
  border-radius:24px;
  padding:16px;
}
.preview img{max-height:420px;margin:auto;border-radius:18px}
.preview p{text-align:center;color:var(--blue2);font-weight:850}
.hidden{display:none!important}

@media(max-width:1050px){
  .site-header{grid-template-columns:auto 1fr}
  .main-nav{display:none}
  .header-cta{justify-self:end}
  .hero,.reporter-hero,.group-panel{grid-template-columns:1fr}
  .cards{grid-template-columns:1fr}
  .mini-features{grid-template-columns:repeat(2,1fr)}
  .form-grid{grid-template-columns:1fr 1fr}
  .message{grid-column:1 / -1;grid-row:auto}
  .photo-box,.submit-box{grid-column:1 / -1;min-height:auto}
  .submit-box button{min-height:80px;font-size:1.5rem}
}
@media(max-width:720px){
  body{padding-bottom:78px}
  .site-header{display:flex;align-items:center;justify-content:space-between}
  .brand span{display:none}
  .brand img{width:74px;height:60px}
  .header-cta{display:none}
  .hero,.reporter-hero{margin-top:22px}
  .hero-left,.reporter-hero .content{text-align:center}
  .hero h1{font-size:3.2rem}
  .hero-actions{justify-content:center}
  .form-card{padding:22px}
  .form-grid{grid-template-columns:1fr}
  .message,.photo-box,.submit-box{grid-column:auto}
  .group-panel{padding:26px}
  .qr-box img{width:220px}
  .footer-content{justify-content:center;text-align:center}
  .mobile-bottom-nav{
    position:fixed;
    left:0;right:0;bottom:0;
    z-index:9999;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    background:rgba(255,255,255,.98);
    border-top:1px solid rgba(0,63,150,.12);
    box-shadow:0 -10px 28px rgba(6,40,95,.12);
    padding:7px 6px calc(7px + env(safe-area-inset-bottom));
  }
  .mobile-bottom-nav a{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:3px;
    color:var(--blue);
    font-size:1.2rem;
    font-weight:900;
    min-height:52px;
  }
  .mobile-bottom-nav span{font-size:.72rem}
}
