:root{
  --bg: #0b1220;          /* deep navy */
  --bg-2: #0e1830;        /* slightly lighter navy */
  --card: #0f1b34;        /* panel background */
  --ink: #e7edf8;         /* near-white text */
  --muted: #a9b5cc;       /* muted text */
  --line: rgba(231,237,248,.12);

  --accent: #ff8a1f;      /* orange */
  --accent-2: #ffb26a;    /* lighter orange */
  --link: #e7edf8;
  --shadow: 0 18px 50px rgba(0,0,0,.35);

  --radius: 16px;
  --radius-sm: 12px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: radial-gradient(1200px 700px at 20% -10%, rgba(255,138,31,.18), transparent 55%),
              radial-gradient(900px 600px at 85% 10%, rgba(100,140,255,.12), transparent 55%),
              var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

.site-logo{
  height: 38px;
  width: auto;
  display: block;
}

.logo-link{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.container{
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px;
}

.topbar{
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(11,18,32,.72);
  border-bottom: 1px solid var(--line);
}
.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap: 10px;
}
.mark{
  width: 36px;
  height: 36px;
  display:grid;
  place-items:center;
  border-radius: 10px;
  background: rgba(255,138,31,.14);
  border: 1px solid rgba(255,138,31,.25);
  color: var(--accent);
  font-weight: 800;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}
.word{
  font-weight: 900;
  letter-spacing: .2px;
  font-size: 1.15rem;
}
.brand-name{ color: var(--ink); }
.brand-dot{ color: var(--accent-2); }
.brand-tld{ color: var(--accent); }

.nav{
  display:flex;
  gap: 14px;
  align-items:center;
}
.nav a{
  color: var(--muted);
  text-decoration:none;
  font-weight: 700;
  padding: 8px 10px;
  border-radius: 999px;
}
.nav a:hover{
  color: var(--ink);
  background: rgba(231,237,248,.06);
}

.hero{
  padding: 54px 0 26px;
}
.hero-inner{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 22px;
  align-items: start;
}

h1{
  font-size: clamp(2.0rem, 3.5vw, 3.0rem);
  line-height: 1.15;
  margin: 0 0 12px 0;
}
.lead{
  margin: 0 0 18px 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-cta{
  display:flex;
  gap: 12px;
  flex-wrap:wrap;
  margin: 18px 0 14px;
}

.trust{
  display:flex;
  gap: 12px;
  flex-wrap:wrap;
  color: var(--muted);
  font-weight: 650;
  font-size: .95rem;
}
.trust span{
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(231,237,248,.04);
}

.card, .panel, .work-item, .notice{
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.card{
  padding: 18px 18px 16px;
}
.card h3{ margin: 0 0 8px 0; }
.card p{ margin: 0 0 12px 0; color: var(--muted); }
.bullets{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}
.bullets li{ margin: 6px 0; }

.section{
  padding: 34px 0;
}
.section-alt{
  background: rgba(231,237,248,.03);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
h2{
  margin: 0 0 14px 0;
  font-size: 1.55rem;
}
.muted{ color: var(--muted); }

.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.panel{
  padding: 16px;
}
.panel h3{ margin: 0 0 8px 0; }
.panel p{ margin: 0; color: var(--muted); }

.work-list{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.work-item{
  padding: 16px;
}
.work-item h3{ margin: 0 0 6px 0; }
.work-item p{ margin: 0; color: var(--muted); }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  padding: 11px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,138,31,.35);
  background: linear-gradient(180deg, rgba(255,138,31,.98), rgba(255,138,31,.84));
  color: #1a1208;
  font-weight: 900;
  text-decoration:none;
  cursor:pointer;
  user-select:none;
}
.btn:hover{
  filter: brightness(1.03);
}
.btn:active{
  transform: translateY(1px);
}
.btn-small{
  padding: 8px 12px;
  font-weight: 900;
}
.btn-ghost{
  background: rgba(231,237,248,.06);
  border: 1px solid var(--line);
  color: var(--ink);
}
.btn-ghost:hover{
  background: rgba(231,237,248,.09);
}

.notice{
  padding: 14px 14px 12px;
  margin: 14px 0;
}
.notice ul{ margin: 8px 0 0; padding-left: 18px; }
.success{
  border-color: rgba(60, 220, 140, .35);
  background: rgba(60, 220, 140, .08);
}
.error{
  border-color: rgba(255, 80, 80, .35);
  background: rgba(255, 80, 80, .08);
}

.form{
  margin-top: 12px;
  max-width: 760px;
}
.row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.field{
  display:flex;
  flex-direction:column;
  gap: 6px;
  margin-bottom: 12px;
}
label{
  font-weight: 800;
  color: var(--ink);
}
input, textarea{
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(231,237,248,.18);
  background: rgba(11,18,32,.55);
  color: var(--ink);
  padding: 11px 12px;
  outline: none;
}
input:focus, textarea:focus{
  border-color: rgba(255,138,31,.55);
  box-shadow: 0 0 0 3px rgba(255,138,31,.16);
}
.hint{
  font-size: .92rem;
  color: var(--muted);
}
.small{
  font-size: .95rem;
  margin-top: 12px;
}

.hp{
  position:absolute !important;
  left:-9999px !important;
  width:1px; height:1px;
  overflow:hidden;
}

.footer{
  padding: 26px 0 30px;
  border-top: 1px solid var(--line);
  margin-top: 12px;
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  gap: 12px;
  align-items:center;
  color: var(--muted);
}
.mini-brand{
  font-weight: 900;
  color: var(--ink);
}
.mini-brand .dot{ color: var(--accent-2); }
.mini-brand .tld{ color: var(--accent); }
.sep{ margin: 0 8px; opacity: .6; }

a{ color: var(--link); }
a:hover{ color: var(--accent-2); }

@media (max-width: 900px){
  .hero-inner{ grid-template-columns: 1fr; }
  .grid{ grid-template-columns: 1fr; }
  .row{ grid-template-columns: 1fr; }
  .nav{ gap: 6px; }
}
