:root{
  --bg:#0b0f14;
  --panel:#111827;
  --panel2:#0f172a;
  --text:#e5e7eb;
  --muted:#9ca3af;
  --line:#243044;
  --accent:#60a5fa;
  --accent2:#34d399;
  --warn:#fbbf24;
  --danger:#f87171;

  --radius: 16px;
  --shadow: 0 10px 25px rgba(0,0,0,.35);
  --container: 1080px;

  --primary: #71A344;
  --primary-600: #5C8738;
  --primary-700: #476B2B;
  --primary-soft: rgba(113, 163, 68, .14);}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Arial, sans-serif;
  background: radial-gradient(1000px 500px at 20% 0%, rgba(96,165,250,.18), transparent 60%),
              radial-gradient(1000px 500px at 80% 0%, rgba(52,211,153,.12), transparent 60%),
              var(--bg);
  color:var(--text);
  line-height:1.6;
}

a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:underline; }

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

.skip-link{
  position:absolute;
  left:-9999px;
  top: 8px;
  background: #fff;
  color:#000;
  padding:10px 12px;
  border-radius:10px;
  z-index:999;
}
.skip-link:focus{ left: 12px; }

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,15,20,.65);
  border-bottom: 1px solid rgba(36,48,68,.6);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:64px;
  gap: 14px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:700;
}
.brand-mark{
  display:inline-grid;
  place-items:center;
  width:38px;height:38px;
  border-radius:12px;
  background: linear-gradient(135deg, rgba(96,165,250,.9), rgba(52,211,153,.8));
  color:#001018;
  font-weight:900;
}
.brand-name{ letter-spacing:.02em; }

.site-nav{
  display:flex;
  align-items:center;
  gap: 14px;
  flex-wrap:wrap;
}
.site-nav a{
  padding: 10px 10px;
  border-radius: 12px;
  color: var(--text);
}
.site-nav a.active{
  background: rgba(96,165,250,.12);
  border: 1px solid rgba(96,165,250,.25);
}
.nav-cta{
  background: rgba(52,211,153,.14);
  border: 1px solid rgba(52,211,153,.25);
}
.nav-cta:hover{ text-decoration:none; filter:brightness(1.08); }

.nav-toggle{
  display:none;
  background: transparent;
  border: 1px solid rgba(229,231,235,.25);
  color: var(--text);
  padding: 10px 12px;
  border-radius: 12px;
  cursor:pointer;
}

.hero{
  padding: 48px 0 28px;
}
.hero-inner{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items: start;
}
.badge{
  display:inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(96,165,250,.14);
  border: 1px solid rgba(96,165,250,.25);
  color: var(--text);
  font-weight:600;
  margin: 0 0 10px;
}
.hero h1{
  font-size: clamp(28px, 3.6vw, 44px);
  line-height:1.15;
  margin: 0 0 12px;
}
.lead{
  color: var(--text);
  font-size: 1.08rem;
  margin: 0 0 16px;
}
.hero-actions{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
  margin: 16px 0 12px;
}
.hero-points{
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.hero-card{
  background: rgba(17,24,39,.75);
  border: 1px solid rgba(36,48,68,.7);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.card-title{ margin: 0 0 10px; font-size:1.1rem; }
.checklist{ margin: 0; padding-left: 18px; color: var(--text); }
.note{
  margin-top: 14px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(52,211,153,.08);
  border: 1px solid rgba(52,211,153,.18);
}

.section{ padding: 34px 0; }
.section.alt{
  background: rgba(15,23,42,.35);
  border-top: 1px solid rgba(36,48,68,.45);
  border-bottom: 1px solid rgba(36,48,68,.45);
}
.section.compact{ padding: 22px 0; }

h2{ margin:0 0 10px; font-size:1.5rem; }
.h3{ font-size:1.1rem; margin:0; }

.muted{ color: var(--muted); }
.small{ font-size:.9rem; }

.grid{ display:grid; gap: 14px; }
.cards-3{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards-2{ grid-template-columns: repeat(2, minmax(0, 1fr)); }

.card{
  background: rgba(17,24,39,.65);
  border: 1px solid rgba(36,48,68,.7);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 10px 18px rgba(0,0,0,.18);
}
.card.featured{
  border-color: rgba(96,165,250,.35);
  background: rgba(17,24,39,.8);
}
.price{
  font-size: 1.6rem;
  margin: 10px 0;
  font-weight: 800;
}

.bullets{ margin: 10px 0 0; padding-left: 18px; color: var(--text); }
.text-link{ color: var(--accent); font-weight: 600; }

.callout{
  margin-top: 18px;
  background: rgba(17,24,39,.75);
  border: 1px solid rgba(36,48,68,.7);
  border-radius: var(--radius);
  padding: 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}
.callout-actions{ display:flex; gap: 10px; flex-wrap:wrap; }
.callout.warning{
  border-color: rgba(251,191,36,.35);
  background: rgba(17,24,39,.85);
}
.callout.info{ border-color: rgba(96,165,250,.35); }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(229,231,235,.25);
  background: rgba(255,255,255,.02);
  color: var(--text);
  cursor:pointer;
  font-weight: 700;
}
.btn:hover{ text-decoration:none; filter: brightness(1.08); }
.btn.primary{
  border-color: rgba(96,165,250,.45);
  background: rgba(96,165,250,.18);
}
.btn.ghost{ background: transparent; }

.page{ padding: 22px 0 36px; }
.page-header{ padding: 16px 0 6px; }
.page-header h1{ margin: 0 0 6px; font-size: 2rem; }

.site-footer{
  border-top: 1px solid rgba(36,48,68,.6);
  padding: 20px 0;
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  flex-wrap:wrap;
}
.footer-links{
  display:flex;
  gap: 12px;
  flex-wrap:wrap;
}

.steps{ margin: 0; padding-left: 18px; }
.steps.large li{ margin-bottom: 10px; }
.pill-list{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.pill-list li{
  border: 1px solid rgba(36,48,68,.8);
  background: rgba(17,24,39,.55);
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--text);
}

/* Form */
.form{
  margin-top: 16px;
  background: rgba(17,24,39,.6);
  border: 1px solid rgba(36,48,68,.7);
  border-radius: var(--radius);
  padding: 16px;
}
.form-row{ margin-bottom: 14px; }
label{ display:block; font-weight:700; margin-bottom: 6px; }
.req{ color: var(--warn); margin-left: 4px; }
input[type="text"], input[type="email"], input[type="tel"]{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(229,231,235,.2);
  background: rgba(0,0,0,.18);
  color: var(--text);
  outline: none;
}
input:focus{
  border-color: rgba(96,165,250,.55);
  box-shadow: 0 0 0 4px rgba(96,165,250,.12);
}
.help{ margin: 6px 0 0; color: var(--muted); font-size: .92rem; }

.checkbox{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  margin: 10px 0;
  font-weight: 600;
}
.checkbox input{ margin-top: 3px; }
fieldset{
  border: 1px solid rgba(36,48,68,.6);
  border-radius: var(--radius);
  padding: 12px;
}
legend{ padding: 0 8px; font-weight: 800; }

.error{
  min-height: 1.2em;
  margin: 6px 0 0;
  color: var(--danger);
  font-size: .92rem;
}

/* Prose */
.prose h2{ margin-top: 18px; }
.prose hr{
  border:0;
  border-top: 1px solid rgba(36,48,68,.7);
  margin: 18px 0;
}

/* Responsive */
@media (max-width: 960px){
  .hero-inner{ grid-template-columns: 1fr; }
  .cards-3{ grid-template-columns: 1fr; }
  .cards-2{ grid-template-columns: 1fr; }
}

@media (max-width: 820px){
  .nav-toggle{ display:inline-flex; }
  .site-nav{
    display:none;
    width:100%;
    padding-bottom: 12px;
  }
  .site-nav.is-open{ display:flex; flex-direction:column; align-items:stretch; }
  .site-nav a{ border: 1px solid rgba(36,48,68,.55); background: rgba(17,24,39,.45); }
}


}


/* ===== Green trustworthy theme (#71A344) ===== */
a{ color: var(--primary); }
a:hover{ color: var(--primary-700); }
:focus-visible{ outline: 3px solid var(--primary-soft); outline-offset: 2px; }

.btn-primary,
button.btn-primary,
a.btn-primary{
  background: var(--primary);
  border-color: var(--primary-600);
}
.btn-primary:hover,
button.btn-primary:hover,
a.btn-primary:hover{
  background: var(--primary-600);
  border-color: var(--primary-700);
}

/* Subtle accents */
.badge,
.tag,
.pill{
  background: var(--primary-soft);
  color: var(--primary-700);
  border-color: rgba(113,163,68,.28);
}

/* Cards: calm + trustworthy */
.card,
.hero-card,
.feature-card{
  background: rgba(17,24,39,.78);
  border-color: rgba(36,48,68,.72);
}

/* Hero visual centered + prominent */
.hero-visual--center{
  max-width: 1040px;
  margin: 14px auto 22px;
}
.hero-visual--center img{
  display:block;
  width: 100%;
  height: auto;
}
@media (min-width: 961px){
  .hero-inner{
    grid-template-columns: 1fr 1fr;
  }
}


/* ===== White base (trustworthy) overrides ===== */
:root{
  --bg: #ffffff;
  --panel: #ffffff;
  --panel2: #f8fafc;
  --text: #111827;
  --muted: #4b5563;
  --line: #e5e7eb;
  --shadow: 0 10px 25px rgba(17,24,39,.10);
}

html, body{
  background: var(--bg);
  color: var(--text);
}

/* Remove any gradient/striped backgrounds */
.section,
.section.alt,
.page,
.container{
  background: transparent;
}

/* Header / Footer */
.site-header{
  background: rgba(255,255,255,.9);
  border-bottom: 1px solid var(--line);
  -webkit-backdrop-filter: blur(10px);
}
.site-footer{
  border-top: 1px solid var(--line);
  background: #ffffff;
}

/* Cards */
.card,
.hero-card,
.feature-card{
  background: var(--panel);
  border: 1px solid var(--line);
}

/* Links & primary color keep green */
a{ color: var(--primary); }
a:hover{ color: var(--primary-700); }
:focus-visible{
  outline: 3px solid var(--primary-soft);
  outline-offset: 2px;
}


/* === Form textarea: match inputs (white base) === */
.form-row textarea,
textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: inherit;
  font: inherit;
  line-height: 1.6;
  box-sizing: border-box;
  resize: vertical;
  min-height: 120px; /* ~5 lines */
}
.form-row textarea::placeholder,
textarea::placeholder{
  color: #9ca3af;
}
.form-row textarea:focus,
textarea:focus{
  outline: 3px solid var(--primary-soft);
  outline-offset: 2px;
}


/* ===== White base overrides for callout & form ===== */

/* Callout */
.callout{
  background: #ffffff;
  border: 1px solid var(--line);
  color: var(--text);
}
.callout strong{
  color: var(--primary-700);
}

/* Form wrapper */
.form,
form{
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

/* Form rows */
.form-row{
  background: transparent;
}

/* Errors */
.form .error,
.form-row .error{
  color: #b91c1c;
}


/* ===== White base overrides: remaining dark components ===== */

/* Hero card / comparison / panels */
.hero-card,
.comparison,
.comparison > div,
.panel,
.panel-alt{
  background: #ffffff;
 /*  border: 1px solid var(--line); */
  color: var(--text);
}

/* Featured card */
.card.featured,
.feature-card.featured,
.card-featured{
  background: #ffffff;
  border: 1px solid rgba(113,163,68,.35);
  box-shadow: var(--shadow);
}
.card.featured .badge,
.feature-card.featured .badge{
  background: var(--primary-soft);
  border-color: rgba(113,163,68,.28);
  color: var(--primary-700);
}

/* Callout variants */
.callout.warning,
.callout--warning,
.callout.is-warning{
  background: #fff7ed; /* warm but light */
  border: 1px solid #fdba74;
  color: #7c2d12;
}
.callout.warning a,
.callout--warning a,
.callout.is-warning a{
  color: #7c2d12;
  text-decoration: underline;
}

/* Badges / pills / tags */
.badge,
.pill,
.tag,
.chip{
  background: var(--primary-soft);
  border: 1px solid rgba(113,163,68,.28);
  color: var(--primary-700);
}

/* Tables (if any) */
table{
  background: #ffffff;
}
th, td{
  border-color: var(--line);
}


/* ===== White base override: pill-list ===== */
.pill-list,
.pill-list li{
  background: transparent;
  color: var(--text);
}

.pill-list li{
  background: var(--primary-soft);
  border: 1px solid rgba(113,163,68,.28);
  color: var(--primary-700);
}
