/* ─────────────────────────────────────────────────────────────
   ClickClack landing page styles
   solderpop.io/clickclack
   ───────────────────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --iron3:   #111b27;
  --iron2:   #16202d;
  --iron:    #1E2A38;
  --amber:   #E89530;
  --amber2:  #f0a040;
  --n-blue:  #7B8DB5;
  --a-sage:  #7A9E8E;
  --l-teal:  #2EC4B6;
  --f-slate: #5C6B7A;
  --coral:   #FF6B6B;
  --white:   #F4F6F9;
  --dim:     rgba(244,246,249,0.52);
  --dim2:    rgba(244,246,249,0.24);
  --dim3:    rgba(244,246,249,0.12);
  --border:  rgba(244,246,249,0.07);
  --border2: rgba(244,246,249,0.04);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--iron3);
  color: var(--white);
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 44px 44px;
}

/* ── Scroll progress bar ─────────────────────────────────────── */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 100%;
  transform-origin: left center;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--amber), var(--l-teal));
  z-index: 200;
  pointer-events: none;
}

/* ── Nav ─────────────────────────────────────────────────────── */

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2.5rem;
  background: rgba(17,27,39,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.sp-lockup { display: flex; align-items: center; gap: 0.45rem; }
.sp-wm { font-weight: 700; font-size: 0.88rem; letter-spacing: -0.2px; }
.sp-wm .solder { color: rgba(244,246,249,0.6); }
.sp-wm .pop    { color: var(--coral); }

.nav-pill {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--amber);
  border: 1px solid rgba(232,149,48,0.28);
  background: rgba(232,149,48,0.05);
  padding: 0.35em 0.9em;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-pill::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--amber);
  animation: blink 2s infinite;
}

@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.2; } }

.lang-btn {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0.35em 0.75em;
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--dim);
  transition: 0.18s ease;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.lang-btn:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(232,149,48,0.3);
  color: var(--amber);
}

/* ── Hero ─────────────────────────────────────────────────────── */

.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 9rem 1.5rem 4rem;
}

.hero::after {
  content: '';
  position: absolute;
  width: 960px;
  height: 640px;
  background: radial-gradient(ellipse, rgba(232,149,48,0.09) 0%, transparent 64%);
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  border: 1px solid rgba(232,149,48,0.22);
  background: rgba(232,149,48,0.05);
  padding: 0.4em 1.1em;
  border-radius: 20px;
  margin-bottom: 2.2rem;
  display: inline-block;
  animation: up 0.6s ease-out 0.05s both;
}

.hero-rune {
  margin-bottom: 1.5rem;
  animation: up 0.6s ease-out 0.12s both;
}

.hero-rune img {
  animation: hero-icon-float 4s ease-in-out 0.85s infinite;
}

@keyframes hero-icon-float {
  0%, 100% { transform: translateY(0px);   filter: drop-shadow(0 0 14px rgba(232,149,48,0.30)); }
  50%       { transform: translateY(-11px); filter: drop-shadow(0 0 28px rgba(232,149,48,0.60)); }
}

.hero-tagline {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 1rem;
  animation: up 0.6s ease-out 0.18s both;
}

h1 {
  font-size: clamp(3.3rem, 10vw, 6.5rem);
  font-weight: 800;
  letter-spacing: -3px;
  line-height: 0.95;
  font-family: 'Inter', sans-serif;
  margin-bottom: 1.8rem;
  animation: up 0.6s ease-out 0.24s both;
}

h1 .click { color: var(--white); }

h1 .clack {
  background: linear-gradient(90deg, var(--amber) 0%, #f7cb6e 45%, var(--amber) 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: clack-shimmer 5s linear infinite;
}

@keyframes clack-shimmer {
  0%   { background-position: 250% center; }
  100% { background-position: -250% center; }
}

.hero-lead {
  font-size: clamp(1.1rem, 2.4vw, 1.35rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.55;
  max-width: 560px;
  margin: 0 auto 1rem;
  animation: up 0.6s ease-out 0.31s both;
}

.hero-sub {
  font-size: clamp(0.98rem, 1.9vw, 1.08rem);
  color: var(--dim);
  line-height: 1.72;
  max-width: 640px;
  margin: 0 auto 2.8rem;
  animation: up 0.6s ease-out 0.38s both;
}

/* ── Form ─────────────────────────────────────────────────────── */

.form-wrap {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  animation: up 0.6s ease-out 0.46s both;
}

.form-row {
  display: flex;
  gap: 0.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.45rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-row:focus-within {
  border-color: rgba(232,149,48,0.45);
  box-shadow: 0 0 0 3px rgba(232,149,48,0.07);
}

.form-row.shake { animation: shake 0.35s ease; border-color: rgba(255,107,107,0.55); }

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25%       { transform: translateX(-6px); }
  75%       { transform: translateX(6px); }
}

.form-row input[type="email"] {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.97rem;
  padding: 0.6rem 0.8rem;
}

.form-row input::placeholder { color: var(--dim2); }

.btn-join {
  background: var(--amber);
  color: var(--iron3);
  border: none;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.72rem 1.5rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}

.btn-join:hover { background: var(--amber2); transform: translateY(-1px); }
.btn-join:active { transform: none; }

.form-note {
  font-size: 0.78rem;
  color: var(--dim2);
  margin-top: 0.9rem;
  text-align: center;
}

.success-msg {
  display: none;
  padding: 1.6rem 2rem;
  text-align: center;
  background: rgba(46,196,182,0.05);
  border: 1px solid rgba(46,196,182,0.18);
  border-radius: 12px;
}

.success-msg .si { font-size: 2rem; margin-bottom: 0.5rem; }
.success-msg p { font-size: 1rem; font-weight: 700; color: var(--l-teal); line-height: 1.6; }
.success-msg span { font-size: 0.78rem; color: var(--dim2); display: block; margin-top: 0.4rem; font-weight: 400; }

/* ── Shared section ───────────────────────────────────────────── */

section { position: relative; z-index: 1; }

.section-inner { max-width: 1000px; margin: 0 auto; }

.slabel {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.7rem;
}

.stitle {
  font-size: clamp(2rem, 4.6vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -1.2px;
  line-height: 1.08;
  margin-bottom: 0.9rem;
  font-family: 'Inter', sans-serif;
}

.sdesc {
  font-size: 1rem;
  color: var(--dim);
  line-height: 1.85;
  max-width: 540px;
}

/* ── Trust strip ──────────────────────────────────────────────── */

.trust {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  padding: 0 1.5rem 6rem;
  animation: up 0.6s ease-out 0.6s both;
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--dim);
  border: 1px solid var(--border);
  background: var(--border2);
  padding: 0.4em 0.9em;
  border-radius: 20px;
}

.trust-pill .dot { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; }

/* ── Projects ─────────────────────────────────────────────────── */

.projects {
  padding: 6rem 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.projects .sdesc { margin: 0 auto 3.5rem; }

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  max-width: 960px;
  margin: 0 auto;
}

.pcard {
  padding: 1.8rem 1.5rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  text-align: left;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.pcard:hover {
  transform: translateY(-5px);
  border-color: rgba(232,149,48,0.22);
  box-shadow: 0 18px 50px rgba(0,0,0,0.35);
}

.pcard-head { display: flex; align-items: center; gap: 0.95rem; margin-bottom: 0.95rem; }

.pcard-icon {
  font-size: 2rem;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(232,149,48,0.09);
  border: 1px solid rgba(232,149,48,0.14);
}

.pcard h3 { font-size: 1.02rem; font-weight: 800; margin-bottom: 0; line-height: 1.2; min-width: 0; overflow-wrap: break-word; hyphens: auto; }
.pcard p  { font-size: 0.85rem; color: var(--dim); line-height: 1.65; }

.pcard-tag {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--amber);
  background: rgba(232,149,48,0.08);
  border: 1px solid rgba(232,149,48,0.18);
  padding: 0.2em 0.65em;
  border-radius: 20px;
}

/* ── How it works ─────────────────────────────────────────────── */

.how {
  padding: 6rem 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.how .sdesc { margin: 0 auto 3.5rem; }

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 820px;
  margin: 0 auto;
}

.step {
  padding: 2.2rem 1.6rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.022);
  border: 1px solid var(--border);
  transition: transform 0.3s, border-color 0.3s;
}

.step:hover { transform: translateY(-4px); border-color: rgba(232,149,48,0.2); }

.step-num {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.15rem;
  margin: 0 auto 1.1rem;
}

.step:nth-child(1) .step-num { background: rgba(123,141,181,0.14); color: var(--n-blue); }
.step:nth-child(2) .step-num { background: rgba(122,158,142,0.14); color: var(--a-sage); }
.step:nth-child(3) .step-num { background: rgba(232,149,48,0.14);  color: var(--amber);  }

.step h3 { font-size: 1.08rem; font-weight: 800; margin-bottom: 0.45rem; }
.step p  { font-size: 0.87rem; color: var(--dim); line-height: 1.7; }

/* ── Boards ───────────────────────────────────────────────────── */

.boards {
  padding: 5rem 1.5rem 6rem;
  border-top: 1px solid var(--border);
}

.boards-head { text-align: center; margin-bottom: 3rem; }
.boards-head .sdesc { margin: 0 auto; }

.boards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 980px;
  margin: 0 auto 3rem;
  align-items: start;
}

.bc {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.018);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.bc:hover { transform: translateY(-6px); box-shadow: 0 22px 55px rgba(0,0,0,0.38); border-color: rgba(123,141,181,0.28); }

.bpcb {
  height: 128px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(140deg, #1a2640 0%, #273a5c 100%);
}

.bpcb::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 2px 2px, rgba(123,141,181,0.1) 1px, transparent 0);
  background-size: 14px 14px;
}

.bpcb::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--n-blue), var(--amber), var(--n-blue), transparent);
  opacity: 0.5;
}

.pcbl {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 500;
  font-size: 1.15rem;
  letter-spacing: 0.5px;
  color: rgba(244,246,249,0.88);
  position: relative;
  z-index: 1;
  text-shadow: 0 0 18px rgba(123,141,181,0.25);
}

/* ── PCB scan line ────────────────────────────────────────────── */
.pcb-scan {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(123,141,181,0.9) 40%, rgba(232,149,48,0.55) 60%, transparent 100%);
  pointer-events: none;
  z-index: 3;
  animation: pcb-scan 3.5s ease-in-out infinite;
}

@keyframes pcb-scan {
  0%   { top: 4%;   opacity: 0; }
  6%   { opacity: 1; }
  94%  { opacity: 1; }
  100% { top: 96%;  opacity: 0; }
}

.bbadge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.57rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--n-blue);
  background: rgba(123,141,181,0.1);
  border: 1px solid rgba(123,141,181,0.2);
  padding: 0.22em 0.65em;
  border-radius: 6px;
}

.bc.lite .bpcb { background: linear-gradient(140deg, #1a2538 0%, #222f45 100%); }
.bc.lite .bpcb::after { background: linear-gradient(90deg, transparent, var(--f-slate), var(--n-blue), var(--f-slate), transparent); }
.bc.lite .bbadge { color: var(--f-slate); background: rgba(92,107,122,0.1); border-color: rgba(92,107,122,0.2); }
.bc.lite:hover { border-color: rgba(92,107,122,0.28); }

.bi { flex: 1; padding: 1.4rem 1.5rem 1.25rem; }
.bn   { font-size: 1.22rem; font-weight: 800; margin-bottom: 0.22rem; }
.bsub { font-size: 0.78rem; color: var(--dim); margin-bottom: 0.75rem; }
.bd   { font-size: 0.88rem; color: var(--dim); line-height: 1.68; margin-bottom: 0.9rem; }

.bc-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--dim);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.8px;
  padding: 0.42rem 0.75rem;
  cursor: pointer;
  margin-bottom: 0;
  transition: border-color 0.2s, color 0.2s;
}

.bc-toggle:hover {
  border-color: rgba(232,149,48,0.35);
  color: var(--amber);
}

.bc-chevron {
  display: inline-block;
  transition: transform 0.25s ease;
  font-style: normal;
  line-height: 1;
}

/* Spec panel — collapsed by default */
.bc-specs {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
  overflow: hidden;
}

.bc-specs--open {
  grid-template-rows: 1fr;
}

.bc-specs-inner {
  min-height: 0;
  overflow: hidden;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid var(--border);
}

.spec-table td {
  padding: 0.52rem 1.5rem;
  font-size: 0.78rem;
  line-height: 1.5;
  vertical-align: top;
}

.spec-table td:first-child {
  color: var(--dim);
  width: 42%;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.3px;
}

.spec-table td:last-child {
  color: var(--white);
}

.spec-table tr {
  border-bottom: 1px solid var(--border2);
}

.spec-table tr:last-child {
  border-bottom: none;
}

/* ── Sensors ──────────────────────────────────────────────────── */

.sensors {
  padding: 5rem 1.5rem 6rem;
  border-top: 1px solid var(--border);
}

.sensors-head { text-align: center; }
.sensors-head .sdesc { margin: 0 auto; }

.sgrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 980px;
  margin: 3rem auto 0;
  align-items: stretch;
}

.sc {
  padding: 1.35rem 1.1rem;
  border-radius: 12px;
  background: rgba(255,255,255,0.018);
  border: 1px solid var(--border);
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
  min-height: 240px;
}

.sc:hover {
  transform: translateY(-4px);
  border-color: rgba(122,158,142,0.32);
  box-shadow: 0 18px 44px rgba(0,0,0,0.38), 0 0 38px rgba(122,158,142,0.10);
}

.sc-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.9rem;
  font-size: 1.3rem;
  background: rgba(122,158,142,0.09);
  border: 1px solid rgba(122,158,142,0.14);
}

.sc-name { font-size: 0.92rem; font-weight: 800; margin-bottom: 0.22rem; }
.sc-what { font-size: 0.78rem; font-weight: 700; color: var(--a-sage); margin-bottom: 0.5rem; }
.sc-desc { font-size: 0.73rem; color: var(--dim); line-height: 1.6; }

.sc-advanced .sc-icon { background: rgba(92,107,122,0.09); border-color: rgba(92,107,122,0.14); }
.sc-advanced .sc-what { color: var(--f-slate); }
.sc-advanced:hover {
  border-color: rgba(92,107,122,0.32);
  box-shadow: 0 18px 44px rgba(0,0,0,0.38), 0 0 38px rgba(92,107,122,0.10);
}

/* ── Bottom CTA ───────────────────────────────────────────────── */

.bcta {
  padding: 7rem 1.5rem 8rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.bcta .stitle { margin-bottom: 0.6rem; }
.bcta .sdesc  { margin: 0 auto 2.5rem; }

/* ── Footer ───────────────────────────────────────────────────── */

footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 1.8rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.fl { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
.fsep { width: 1px; height: 16px; background: var(--border); }
.fby { font-size: 0.78rem; color: var(--dim2); }
footer p { font-size: 0.72rem; color: var(--dim2); text-align: right; }

/* ── Animation ────────────────────────────────────────────────── */

@keyframes up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Scroll animations ────────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ───────────────────────────────────────────────── */

@media (max-width: 900px) {
  .showcase-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .boards-grid { grid-template-columns: 1fr; max-width: 620px; }
  .sgrid { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 700px; }
  .sc { min-height: 0; }
}

@media (max-width: 520px) {
  nav { padding: 0.9rem 1.2rem; }
  .nav-pill { display: none; }
  h1 { font-size: 3.6rem; letter-spacing: -2.4px; }
  .hero-lead { font-size: 1.03rem; line-height: 1.5; max-width: 92vw; }
  .hero-sub  { font-size: 0.98rem; line-height: 1.68; max-width: 92vw; }
  .boards-grid { grid-template-columns: 1fr; max-width: 100%; gap: 1.15rem; }
  .bpcb { height: 118px; }
  .pcbl { font-size: 1.08rem; }
  .bn { font-size: 1.14rem; }
  .bd { font-size: 0.95rem; line-height: 1.62; }
  .project-grid { gap: 1rem; }
  .pcard { padding: 1.4rem 1.2rem; }
  .pcard-head { gap: 0.8rem; align-items: center; }
  .sgrid { grid-template-columns: 1fr; max-width: 420px; gap: 0.9rem; }
  .sc { padding: 1.15rem 1rem; min-height: 0; }
  .sc-name { font-size: 1rem; }
  .sc-what { font-size: 0.82rem; }
  .sc-desc { font-size: 0.84rem; line-height: 1.55; }
  .form-row { flex-direction: column; }
  .btn-join { width: 100%; padding: 0.9rem; text-align: center; }
  footer { flex-direction: column; }
  footer p { text-align: left; }
  .fsep { display: none; }
}

@media (max-width: 380px) {
  .sp-lockup { display: none; }
  .sgrid { max-width: 100%; }
}
