:root {
  --bg: #090b0e;
  --bg-soft: #0f1217;
  --surface: rgba(20, 24, 30, 0.78);
  --surface-solid: #15191f;
  --surface-2: #1b2028;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #f4f7f1;
  --text-soft: #c1c8bf;
  --muted: #858d87;
  --lime: #b8f36b;
  --lime-soft: #d9ffab;
  --blue: #77a7ff;
  --orange: #ffb86b;
  --danger: #ff7d89;
  --font-sans: "Pretendard", "SUIT", "Noto Sans KR", "Apple SD Gothic Neo", "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", "SFMono-Regular", Consolas, "D2Coding", monospace;
  --content: 1180px;
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 10px;
  color: #0a0d0a;
  background: var(--lime);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.ambient {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.ambient::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

.ambient-orb {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.14;
}

.orb-one {
  top: -220px;
  left: 8%;
  background: var(--lime);
}

.orb-two {
  top: 240px;
  right: -260px;
  background: var(--blue);
}

.noise {
  position: absolute;
  inset: 0;
  opacity: 0.024;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.86' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.85'/%3E%3C/svg%3E");
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: min(calc(100% - 40px), var(--content));
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid transparent;
  transition: height 0.25s ease, border-color 0.25s ease, background 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: inherit;
  z-index: -1;
  border-bottom: 1px solid transparent;
  transition: inherit;
  pointer-events: none;
}

.site-header.scrolled {
  height: 66px;
}

.site-header.scrolled::before {
  background: rgba(9, 11, 14, 0.78);
  border-color: var(--line);
  backdrop-filter: blur(18px) saturate(140%);
}

.brand {
  display: inline-flex;
  align-items: center;
  font-weight: 760;
  letter-spacing: -0.05em;
}

.brand-mark {
  position: relative;
  width: 29px;
  height: 29px;
  margin-right: 10px;
  border: 1px solid rgba(184, 243, 107, 0.42);
  border-radius: 9px;
  background: rgba(184, 243, 107, 0.08);
  box-shadow: 0 0 22px rgba(184, 243, 107, 0.1);
}

.brand-mark i {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--lime);
  box-shadow: 0 0 10px rgba(184, 243, 107, 0.55);
}

.brand-mark i:first-child {
  top: 6px;
  left: 6px;
}

.brand-mark i:last-child {
  right: 6px;
  bottom: 6px;
}

.brand-name {
  font-size: 21px;
}

.brand-name span {
  color: var(--lime);
}

.brand-domain {
  margin-left: 1px;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: -0.02em;
}

.site-nav {
  display: flex;
  gap: 34px;
  margin-left: 80px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 580;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  transition: color 0.2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 2px;
  height: 1px;
  background: var(--lime);
  transition: right 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  right: 0;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  color: var(--text-soft);
  background: rgba(255,255,255,.025);
  font-size: 13px;
  font-weight: 650;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.header-cta:hover {
  color: var(--text);
  border-color: rgba(184, 243, 107, 0.42);
  background: rgba(184, 243, 107, 0.07);
  transform: translateY(-1px);
}

.header-cta svg,
.button svg,
.slug-form svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

main {
  display: block;
}

.hero {
  width: min(calc(100% - 40px), var(--content));
  min-height: 700px;
  margin: 0 auto;
  padding: 92px 0 86px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
  align-items: center;
  gap: 74px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--lime);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.pulse-dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(184,243,107,.1), 0 0 18px rgba(184,243,107,.5);
}

.pulse-dot::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(184, 243, 107, 0.45);
  border-radius: inherit;
  animation: pulse 2.2s ease-out infinite;
}

.hero h1 {
  margin: 25px 0 25px;
  font-size: clamp(48px, 5vw, 75px);
  line-height: 1.07;
  letter-spacing: -0.062em;
  font-weight: 780;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(110deg, var(--lime-soft) 8%, var(--lime) 48%, #91cfff 94%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-lead {
  max-width: 575px;
  margin: 0;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.82;
  letter-spacing: -0.015em;
}

.hero-actions {
  display: flex;
  gap: 11px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 50px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.button-primary {
  color: #10150b;
  background: var(--lime);
  box-shadow: 0 10px 34px rgba(157, 217, 83, 0.14), inset 0 1px rgba(255,255,255,.38);
}

.button-primary:hover {
  transform: translateY(-2px);
  background: #c5fa82;
  box-shadow: 0 14px 38px rgba(157, 217, 83, 0.23), inset 0 1px rgba(255,255,255,.45);
}

.button-primary svg {
  transition: transform 0.2s ease;
}

.button-primary:hover svg {
  transform: translateX(3px);
}

.button-ghost {
  color: var(--text-soft);
  border-color: var(--line);
  background: rgba(255,255,255,.025);
}

.button-ghost:hover {
  color: var(--text);
  border-color: var(--line-strong);
  background: rgba(255,255,255,.05);
  transform: translateY(-2px);
}

.hero-trust {
  display: flex;
  gap: 18px;
  padding: 0;
  margin: 28px 0 0;
  color: var(--muted);
  list-style: none;
  font-size: 12px;
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-trust span {
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border: 1px solid rgba(184,243,107,.25);
  border-radius: 50%;
  color: var(--lime);
  background: rgba(184,243,107,.06);
  font-size: 10px;
}

.hero-stage {
  position: relative;
  min-height: 520px;
  perspective: 1200px;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(184,243,107,.09);
  border-radius: 50%;
  pointer-events: none;
}

.hero-stage .orbit-one {
  width: 520px;
  height: 520px;
  top: -24px;
  left: 12px;
  animation: orbit 24s linear infinite;
}

.hero-stage .orbit-two {
  width: 380px;
  height: 380px;
  top: 46px;
  left: 82px;
  border-color: rgba(119,167,255,.1);
  animation: orbit 18s linear reverse infinite;
}

.product-window {
  position: absolute;
  top: 20px;
  left: 0;
  width: 590px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  background: #11151a;
  box-shadow: 0 45px 100px rgba(0,0,0,.48), 0 0 80px rgba(184,243,107,.055), inset 0 1px rgba(255,255,255,.06);
  transform: rotateY(-5deg) rotateX(1.5deg);
  transform-origin: center;
  animation: window-float 7s ease-in-out infinite;
}

.window-top {
  height: 44px;
  padding: 0 13px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  background: #171b21;
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3d434c;
}

.window-dots i:first-child { background: #f4757d; }
.window-dots i:nth-child(2) { background: #e8b667; }
.window-dots i:last-child { background: #78c984; }

.address-bar {
  flex: 1;
  height: 25px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 7px;
  color: #7f8881;
  background: rgba(0,0,0,.18);
  font-family: var(--font-mono);
  font-size: 8px;
}

.lock { color: var(--lime); }

.window-live {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #717a73;
  font-family: var(--font-mono);
  font-size: 7px;
  letter-spacing: .08em;
}

.window-live i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 8px rgba(184,243,107,.6);
}

.window-body {
  min-height: 388px;
  display: grid;
  grid-template-columns: 130px 1fr;
}

.mini-sidebar {
  position: relative;
  padding: 20px 12px;
  border-right: 1px solid var(--line);
  background: #101318;
}

.mini-brand {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0 7px 23px;
  font-size: 11px;
  font-weight: 700;
}

.mini-brand span {
  width: 13px;
  height: 13px;
  border-radius: 4px;
  background: var(--lime);
  box-shadow: 0 0 12px rgba(184,243,107,.3);
}

.mini-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 31px;
  padding: 0 9px;
  margin: 3px 0;
  border-radius: 7px;
  color: #6f7771;
  font-size: 8px;
}

.mini-nav i {
  width: 10px;
  height: 10px;
  border: 1px solid currentColor;
  border-radius: 3px;
}

.mini-nav.active {
  color: #d9e2d6;
  background: rgba(184,243,107,.07);
}

.mini-nav.active i {
  color: var(--lime);
  background: rgba(184,243,107,.12);
}

.mini-capacity {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 20px;
  color: #626b64;
  font-size: 7px;
}

.mini-capacity > div {
  height: 3px;
  margin: 7px 0;
  overflow: hidden;
  border-radius: 4px;
  background: #252a2f;
}

.mini-capacity > div i {
  display: block;
  width: 36%;
  height: 100%;
  background: var(--lime);
}

.mini-capacity small {
  font-size: 6px;
}

.mini-main {
  padding: 25px 27px;
  background: radial-gradient(circle at 75% 10%, rgba(119,167,255,.06), transparent 32%);
}

.mini-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 19px;
}

.mini-heading > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.mini-heading small {
  color: var(--lime);
  font-family: var(--font-mono);
  font-size: 6px;
  letter-spacing: .15em;
}

.mini-heading strong {
  font-size: 14px;
}

.mini-secure {
  padding: 5px 7px;
  border: 1px solid rgba(184,243,107,.17);
  border-radius: 5px;
  color: var(--lime);
  background: rgba(184,243,107,.05);
  font-family: var(--font-mono);
  font-size: 6px;
  letter-spacing: .07em;
}

.upload-visual {
  position: relative;
  min-height: 147px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px dashed rgba(184,243,107,.24);
  border-radius: 12px;
  background: rgba(184,243,107,.018);
}

.upload-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
  border: 1px solid rgba(184,243,107,.2);
  border-radius: 12px;
  color: var(--lime);
  background: rgba(184,243,107,.07);
}

.upload-icon svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.upload-visual strong {
  font-size: 9px;
  font-weight: 650;
}

.upload-visual > span {
  margin-top: 5px;
  color: #626b64;
  font-size: 7px;
}

.upload-scan {
  position: absolute;
  left: 12%;
  right: 12%;
  height: 1px;
  top: 10%;
  opacity: 0;
  background: linear-gradient(90deg, transparent, var(--lime), transparent);
  box-shadow: 0 0 12px rgba(184,243,107,.5);
  animation: scan 4s ease-in-out infinite 1s;
}

.slug-visual {
  margin-top: 15px;
}

.slug-visual > span {
  display: block;
  margin-bottom: 7px;
  color: #7f8881;
  font-size: 7px;
}

.slug-visual > div {
  height: 35px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #171b21;
}

.slug-visual small {
  color: #646d66;
  font-family: var(--font-mono);
  font-size: 8px;
}

.slug-visual strong {
  font-size: 9px;
  letter-spacing: .03em;
}

.slug-visual i {
  width: 15px;
  height: 15px;
  margin-left: auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #10150b;
  background: var(--lime);
  font-size: 8px;
  font-style: normal;
}

.publish-visual {
  height: 34px;
  margin-top: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  color: #10150b;
  background: var(--lime);
  font-size: 8px;
  font-weight: 750;
}

.publish-visual i {
  font-style: normal;
}

.float-card {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 13px;
  background: rgba(24, 29, 35, 0.9);
  box-shadow: 0 20px 50px rgba(0,0,0,.38);
  backdrop-filter: blur(14px);
}

.float-file {
  left: -38px;
  bottom: 34px;
  width: 232px;
  min-height: 66px;
  padding: 10px 12px;
  animation: float-card 6s ease-in-out infinite .7s;
}

.file-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-right: 10px;
  border-radius: 9px;
  color: #a9c5ff;
  background: rgba(119,167,255,.12);
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
}

.float-card > div {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.float-card strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 9px;
}

.float-card small {
  color: #758078;
  font-size: 7px;
}

.float-file > i {
  width: 18px;
  height: 18px;
  margin-left: auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(184,243,107,.28);
  border-radius: 50%;
  color: var(--lime);
  background: rgba(184,243,107,.07);
  font-size: 8px;
  font-style: normal;
}

.float-link {
  right: -22px;
  top: 84px;
  min-width: 184px;
  min-height: 57px;
  padding: 10px 13px;
  animation: float-card 5s ease-in-out infinite 1.4s;
}

.link-status {
  width: 8px;
  height: 8px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 13px rgba(184,243,107,.65);
}

.float-link strong {
  color: var(--lime-soft);
  font-family: var(--font-mono);
  font-size: 8px;
}

.quick-open {
  width: min(calc(100% - 40px), var(--content));
  min-height: 138px;
  margin: 0 auto;
  padding: 25px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(105deg, rgba(184,243,107,.055), rgba(255,255,255,.018) 48%, rgba(119,167,255,.045));
  box-shadow: inset 0 1px rgba(255,255,255,.035);
}

.quick-open h2 {
  margin: 7px 0 0;
  font-size: 21px;
  letter-spacing: -.035em;
}

.slug-form {
  width: min(100%, 510px);
  height: 57px;
  padding: 5px 5px 5px 17px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: rgba(7,9,11,.66);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.slug-form:focus-within {
  border-color: rgba(184,243,107,.46);
  box-shadow: 0 0 0 4px rgba(184,243,107,.06);
}

.slug-form > span {
  color: #656e67;
  font-family: var(--font-mono);
  font-size: 12px;
}

.slug-form input {
  min-width: 0;
  flex: 1;
  height: 100%;
  padding: 0 8px 0 2px;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
  font-size: 14px;
  font-weight: 650;
}

.slug-form input::placeholder {
  color: #515852;
}

.slug-form button {
  height: 45px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  gap: 7px;
  border: 0;
  border-radius: 10px;
  color: #10150b;
  background: var(--lime);
  font-size: 12px;
  font-weight: 750;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.slug-form button:hover {
  background: #c5fa82;
  transform: translateX(1px);
}

.section {
  width: min(calc(100% - 40px), var(--content));
  margin: 0 auto;
  padding: 150px 0 40px;
}

.section-heading {
  max-width: 650px;
  margin-bottom: 48px;
}

.section-heading h2,
.security-copy h2 {
  margin: 14px 0 17px;
  font-size: clamp(36px, 4vw, 55px);
  line-height: 1.15;
  letter-spacing: -.055em;
}

.section-heading p,
.security-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

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

.feature-card {
  position: relative;
  min-height: 265px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(24,29,35,.83), rgba(14,17,21,.9));
  box-shadow: inset 0 1px rgba(255,255,255,.035);
  transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(184,243,107,.18);
  box-shadow: 0 22px 50px rgba(0,0,0,.18), inset 0 1px rgba(255,255,255,.05);
}

.feature-card::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  right: -100px;
  top: -100px;
  border-radius: 50%;
  background: rgba(184,243,107,.06);
  filter: blur(55px);
  opacity: 0;
  transition: opacity .3s ease;
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-wide {
  grid-column: 1 / -1;
  min-height: 345px;
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  align-items: center;
  gap: 50px;
}

.feature-tall {
  min-height: 400px;
}

.feature-number {
  display: block;
  margin-bottom: 25px;
  color: #545c56;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .1em;
}

.feature-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  font-size: 23px;
  letter-spacing: -.035em;
}

.feature-card p {
  position: relative;
  z-index: 1;
  max-width: 480px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 22px;
}

.feature-tags span {
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #89928b;
  background: rgba(255,255,255,.02);
  font-size: 10px;
}

.slug-showcase {
  position: relative;
  min-height: 190px;
  padding: 46px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: radial-gradient(circle at 50% 0, rgba(184,243,107,.09), transparent 60%), #101318;
}

.slug-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image: radial-gradient(rgba(255,255,255,.22) .6px, transparent .6px);
  background-size: 14px 14px;
  mask-image: linear-gradient(to bottom, black, transparent);
}

.slug-browser {
  position: relative;
  z-index: 1;
  width: min(100%, 480px);
  height: 55px;
  padding: 0 17px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 13px;
  background: #1a1f25;
  box-shadow: 0 16px 35px rgba(0,0,0,.28);
  font-family: var(--font-mono);
  font-size: 11px;
}

.slug-browser > i {
  width: 6px;
  height: 6px;
  margin-right: 4px;
  border-radius: 50%;
  background: #434b45;
}

.slug-browser > i:nth-child(3) {
  margin-right: 16px;
}

.slug-browser span { color: #687169; }
.slug-browser strong { color: var(--lime-soft); }
.slug-browser b {
  width: 1px;
  height: 17px;
  margin-left: 2px;
  background: var(--lime);
  animation: caret .85s steps(1) infinite;
}

.slug-chips {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.slug-chips span {
  padding: 6px 10px;
  border: 1px solid rgba(184,243,107,.12);
  border-radius: 99px;
  color: #778179;
  background: rgba(184,243,107,.035);
  font-size: 9px;
}

.file-stack {
  position: relative;
  height: 220px;
  margin-top: 27px;
}

.stack-file {
  position: absolute;
  left: 0;
  right: 0;
  height: 63px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(25,30,36,.94);
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
  transform-origin: center;
  transition: transform .3s ease, border-color .3s ease;
}

.feature-tall:hover .stack-file:nth-child(1) { transform: translateY(-5px) rotate(-1deg); }
.feature-tall:hover .stack-file:nth-child(2) { transform: translateY(-2px) translateX(4px); }
.feature-tall:hover .stack-file:nth-child(3) { transform: translateY(2px) translateX(-3px); }
.feature-tall:hover .stack-file:nth-child(4) { transform: translateY(5px) rotate(1deg); }

.stack-file:nth-child(1) { top: 0; z-index: 4; }
.stack-file:nth-child(2) { top: 48px; z-index: 3; left: 7px; right: 7px; }
.stack-file:nth-child(3) { top: 96px; z-index: 2; left: 14px; right: 14px; }
.stack-file:nth-child(4) { top: 144px; z-index: 1; left: 21px; right: 21px; }

.stack-file > span {
  width: 34px;
  height: 34px;
  margin-right: 11px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  font-family: var(--font-mono);
  font-size: 10px;
}

.stack-file > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.stack-file strong { font-size: 10px; }
.stack-file small { color: #667068; font-size: 8px; }
.file-video > span { color: #a9c5ff; background: rgba(119,167,255,.1); }
.file-image > span { color: #f8c38a; background: rgba(255,184,107,.1); }
.file-html > span { color: #c4f28b; background: rgba(184,243,107,.1); }
.file-link > span { color: #c9adff; background: rgba(171,130,255,.1); }

.mini-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 27px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(184,243,107,.16);
  border-radius: 15px;
  color: var(--lime);
  background: rgba(184,243,107,.055);
}

.guest-icon span {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 750;
}

.log-icon {
  align-content: center;
  gap: 5px;
}

.log-icon i {
  display: block;
  width: 25px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.log-icon i:nth-child(2) { width: 18px; margin-right: 7px; opacity: .7; }
.log-icon i:nth-child(3) { width: 21px; margin-left: 4px; opacity: .45; }

.security {
  min-height: 740px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 90px;
}

.security-copy > p strong {
  color: var(--text-soft);
  font-family: var(--font-mono);
  font-size: .88em;
}

.security-list {
  padding: 0;
  margin: 31px 0 0;
  list-style: none;
}

.security-list li {
  padding: 15px 0;
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--line);
}

.security-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.security-list > li > span {
  color: var(--lime);
  font-family: var(--font-mono);
  font-size: 9px;
}

.security-list div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.security-list strong { font-size: 13px; }
.security-list small { color: var(--muted); font-size: 11px; }

.origin-diagram {
  position: relative;
  min-height: 510px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 80px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: radial-gradient(circle at 25% 25%, rgba(184,243,107,.07), transparent 34%), radial-gradient(circle at 80% 82%, rgba(119,167,255,.07), transparent 33%), rgba(15,18,23,.72);
  box-shadow: inset 0 1px rgba(255,255,255,.035), 0 35px 70px rgba(0,0,0,.2);
}

.origin-diagram::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .15;
  border-radius: inherit;
  background-image: radial-gradient(rgba(255,255,255,.22) .7px, transparent .7px);
  background-size: 17px 17px;
  mask-image: radial-gradient(circle, black, transparent 72%);
}

.origin-card {
  position: relative;
  z-index: 2;
  width: 72%;
  min-height: 145px;
  padding: 20px;
  border: 1px solid var(--line-strong);
  border-radius: 17px;
  background: rgba(21,26,32,.93);
  box-shadow: 0 20px 45px rgba(0,0,0,.24);
}

.origin-content {
  margin-left: auto;
}

.origin-head {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 14px;
}

.origin-head small {
  color: #707971;
  font-family: var(--font-mono);
  font-size: 7px;
  letter-spacing: .13em;
}

.origin-light {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.origin-light.green { background: var(--lime); box-shadow: 0 0 10px rgba(184,243,107,.6); }
.origin-light.blue { background: var(--blue); box-shadow: 0 0 10px rgba(119,167,255,.6); }

.origin-card > strong {
  font-family: var(--font-mono);
  font-size: 15px;
}

.origin-app > strong { color: var(--lime-soft); }
.origin-content > strong { color: #afc9ff; }

.origin-card > p {
  margin: 6px 0 0;
  color: #747e76;
  font-size: 9px;
}

.origin-ui {
  position: absolute;
  top: 22px;
  right: 20px;
  width: 90px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}

.origin-ui i {
  height: 25px;
  border: 1px solid rgba(184,243,107,.1);
  border-radius: 5px;
  background: rgba(184,243,107,.035);
}

.origin-ui i:first-child {
  grid-row: span 2;
  height: auto;
}

.code-lines {
  position: absolute;
  top: 25px;
  right: 22px;
  width: 82px;
}

.code-lines i {
  display: block;
  width: 100%;
  height: 3px;
  margin: 7px 0;
  border-radius: 3px;
  background: rgba(119,167,255,.19);
}

.code-lines i:nth-child(2) { width: 66%; }
.code-lines i:nth-child(3) { width: 82%; }
.code-lines i:nth-child(4) { width: 47%; }

.origin-bridge {
  position: absolute;
  z-index: 3;
  top: 46%;
  left: 50%;
  width: 47%;
  color: #667068;
  transform: translate(-50%, -50%) rotate(27deg);
}

.origin-bridge span {
  position: absolute;
  left: 50%;
  bottom: 8px;
  font-family: var(--font-mono);
  font-size: 7px;
  white-space: nowrap;
  transform: translateX(-50%);
}

.origin-bridge > div {
  position: relative;
  width: 100%;
  height: 1px;
  overflow: hidden;
  background: linear-gradient(90deg, var(--lime), rgba(255,255,255,.08), var(--blue));
}

.origin-bridge i {
  position: absolute;
  width: 45px;
  height: 100%;
  background: #fff;
  box-shadow: 0 0 10px #fff;
  animation: bridge-flow 2.4s ease-in-out infinite;
}

.shield {
  position: absolute;
  z-index: 4;
  top: 47%;
  left: 50%;
  width: 45px;
  height: 51px;
  display: grid;
  place-items: center;
  color: #0d1209;
  background: linear-gradient(145deg, var(--lime-soft), var(--lime));
  clip-path: polygon(50% 0, 92% 17%, 84% 71%, 50% 100%, 16% 71%, 8% 17%);
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 0 17px rgba(184,243,107,.22));
}

.shield span {
  font-size: 16px;
  font-weight: 900;
}

.centered {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.workflow {
  padding-bottom: 130px;
}

.steps {
  position: relative;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  list-style: none;
}

.steps::before {
  content: "";
  position: absolute;
  top: 126px;
  left: 16.6%;
  right: 16.6%;
  height: 1px;
  z-index: 0;
  background: linear-gradient(90deg, rgba(184,243,107,.25), rgba(255,255,255,.08), rgba(119,167,255,.25));
}

.step {
  position: relative;
  z-index: 1;
  min-height: 390px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(17,21,26,.72);
  transition: transform .3s ease, border-color .3s ease;
}

.step:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.15);
}

.step-no {
  color: #586059;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .12em;
}

.step-visual {
  height: 155px;
  margin: 20px 0 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.055);
  border-radius: 15px;
  background: #101318;
}

.step h3 {
  margin: 0 0 10px;
  font-size: 20px;
  letter-spacing: -.035em;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.choose-visual {
  position: relative;
}

.choose-visual i {
  width: 68px;
  height: 82px;
  border: 1px solid rgba(184,243,107,.22);
  border-radius: 9px;
  background: linear-gradient(135deg, rgba(184,243,107,.1), rgba(184,243,107,.015));
  transform: rotate(-5deg);
}

.choose-visual i::before {
  content: "";
  position: absolute;
  width: 46px;
  height: 5px;
  left: 50%;
  top: 62px;
  border-radius: 5px;
  background: rgba(184,243,107,.16);
  transform: translateX(-50%);
}

.choose-visual b {
  position: absolute;
  width: 30px;
  height: 30px;
  right: calc(50% - 51px);
  bottom: 31px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #10150b;
  background: var(--lime);
  font-size: 17px;
}

.address-visual {
  gap: 2px;
  font-family: var(--font-mono);
}

.address-visual small { color: #59625a; font-size: 14px; }
.address-visual strong { color: var(--lime-soft); font-size: 16px; }
.address-visual i {
  width: 19px;
  height: 19px;
  margin-left: 9px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #10150b;
  background: var(--lime);
  font-size: 9px;
  font-style: normal;
}

.send-visual {
  position: relative;
}

.send-visual span {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(119,167,255,.25);
  border-radius: 18px;
  color: #b3ccff;
  background: rgba(119,167,255,.08);
  font-size: 24px;
  box-shadow: 0 0 30px rgba(119,167,255,.07);
}

.send-visual i,
.send-visual b {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(119,167,255,.18);
  animation: send-ring 2.6s ease-out infinite;
}

.send-visual i { width: 88px; height: 88px; }
.send-visual b { width: 118px; height: 118px; animation-delay: .65s; }

.final-cta {
  position: relative;
  width: min(calc(100% - 40px), var(--content));
  min-height: 510px;
  margin: 20px auto 90px;
  padding: 70px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(184,243,107,.13);
  border-radius: 32px;
  text-align: center;
  background: radial-gradient(circle at 50% 110%, rgba(184,243,107,.15), transparent 46%), linear-gradient(145deg, #12161b, #0e1115);
  box-shadow: inset 0 1px rgba(255,255,255,.04);
}

.final-cta::before,
.final-cta::after {
  content: "";
  position: absolute;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(184,243,107,.07);
  border-radius: 50%;
}

.final-cta::before { bottom: -250px; }
.final-cta::after { bottom: -195px; width: 280px; height: 280px; }

.cta-glow {
  position: absolute;
  width: 150px;
  height: 150px;
  bottom: -100px;
  border-radius: 50%;
  background: var(--lime);
  filter: blur(65px);
  opacity: .2;
}

.final-cta > *:not(.cta-glow) {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  margin: 18px 0 16px;
  font-size: clamp(45px, 6vw, 73px);
  line-height: 1.08;
  letter-spacing: -.065em;
}

.final-cta h2 span {
  color: var(--lime);
}

.final-cta p {
  margin: 0 0 29px;
  color: var(--muted);
  font-size: 15px;
}

.button-large {
  min-height: 56px;
  padding: 0 25px;
}

.site-footer {
  width: min(calc(100% - 40px), var(--content));
  min-height: 120px;
  margin: 0 auto;
  padding: 30px 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  border-top: 1px solid var(--line);
  color: #69716b;
  font-size: 11px;
}

.footer-brand {
  justify-self: start;
  filter: saturate(.7);
  opacity: .7;
}

.site-footer p {
  margin: 0;
}

.site-footer > div {
  justify-self: end;
  display: flex;
  gap: 13px;
  font-family: var(--font-mono);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s cubic-bezier(.2,.7,.2,1), transform .75s cubic-bezier(.2,.7,.2,1);
}

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

.bento-grid .reveal:nth-child(2),
.steps .reveal:nth-child(2) { transition-delay: .1s; }
.bento-grid .reveal:nth-child(3),
.steps .reveal:nth-child(3) { transition-delay: .18s; }
.bento-grid .reveal:nth-child(4) { transition-delay: .26s; }

@keyframes pulse {
  0% { transform: scale(.65); opacity: .8; }
  75%, 100% { transform: scale(1.65); opacity: 0; }
}

@keyframes orbit {
  to { transform: rotate(360deg); }
}

@keyframes window-float {
  0%, 100% { transform: rotateY(-5deg) rotateX(1.5deg) translateY(0); }
  50% { transform: rotateY(-3deg) rotateX(.5deg) translateY(-9px); }
}

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

@keyframes scan {
  0% { top: 8%; opacity: 0; }
  15% { opacity: .75; }
  65% { opacity: .75; }
  80%, 100% { top: 90%; opacity: 0; }
}

@keyframes caret {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

@keyframes bridge-flow {
  from { left: -50px; }
  to { left: calc(100% + 10px); }
}

@keyframes send-ring {
  0% { opacity: .75; transform: scale(.7); }
  80%, 100% { opacity: 0; transform: scale(1.12); }
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: minmax(0, .82fr) minmax(460px, 1.18fr);
    gap: 34px;
  }

  .product-window {
    width: 540px;
    transform: scale(.92) rotateY(-4deg);
    transform-origin: left center;
  }

  .float-link { right: -5px; }
  .site-nav { margin-left: 30px; }
}

@media (max-width: 960px) {
  .site-nav { display: none; }

  .hero {
    padding-top: 70px;
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-copy {
    max-width: 720px;
    text-align: center;
    margin: 0 auto;
  }

  .hero-lead { margin: 0 auto; }
  .hero-actions, .hero-trust { justify-content: center; }
  .hero-stage { width: min(100%, 630px); margin: 0 auto; }
  .product-window { left: 50%; transform: translateX(-50%); animation-name: window-float-tablet; }
  .float-file { left: 0; }
  .float-link { right: 0; }
  .quick-open { flex-direction: column; align-items: flex-start; }
  .slug-form { width: 100%; max-width: none; }
  .security { grid-template-columns: 1fr; gap: 60px; }
  .security-copy { max-width: 680px; }
  .origin-diagram { width: min(100%, 650px); margin: 0 auto; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .site-footer p { display: none; }
}

@keyframes window-float-tablet {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-9px); }
}

@media (max-width: 720px) {
  .site-header { width: min(calc(100% - 28px), var(--content)); }
  .header-cta span { display: none; }
  .header-cta { padding: 10px; }
  .hero { width: min(calc(100% - 28px), var(--content)); padding-top: 55px; }
  .hero h1 { font-size: clamp(43px, 13vw, 64px); }
  .hero-lead { font-size: 15px; line-height: 1.75; }
  .hero-trust { flex-wrap: wrap; }
  .hero-stage { min-height: 440px; }
  .product-window { width: 590px; transform: translateX(-50%) scale(.75); transform-origin: top center; animation: none; }
  .float-card { transform: scale(.9); }
  .float-file { bottom: 6px; }
  .float-link { top: 54px; }
  .quick-open,
  .section,
  .final-cta,
  .site-footer { width: min(calc(100% - 28px), var(--content)); }
  .quick-open { padding: 22px; }
  .quick-open h2 { font-size: 18px; }
  .bento-grid { grid-template-columns: 1fr; }
  .feature-wide { grid-column: auto; grid-template-columns: 1fr; gap: 32px; }
  .feature-card { padding: 24px; }
  .feature-tall { min-height: 410px; }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .step { min-height: auto; }
  .origin-diagram { min-height: 470px; padding: 25px; }
  .origin-card { width: 82%; }
  .origin-bridge { width: 42%; }
  .final-cta { min-height: 440px; border-radius: 24px; }
  .site-footer > div { flex-wrap: wrap; justify-content: flex-end; }
}

@media (max-width: 500px) {
  .site-header { height: 66px; }
  .brand-name { font-size: 19px; }
  .brand-mark { width: 27px; height: 27px; }
  .hero { padding-top: 45px; padding-bottom: 65px; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .hero-trust { gap: 9px 14px; }
  .hero-stage { min-height: 375px; }
  .product-window { transform: translateX(-50%) scale(.62); }
  .float-file { left: -18px; bottom: -3px; transform: scale(.78); transform-origin: left center; animation: none; }
  .float-link { right: -20px; top: 35px; transform: scale(.78); transform-origin: right center; animation: none; }
  .slug-form { padding-left: 12px; }
  .slug-form > span { display: none; }
  .slug-form input { padding-left: 5px; }
  .section { padding-top: 110px; }
  .section-heading h2,
  .security-copy h2 { font-size: 37px; }
  .slug-showcase { padding: 38px 15px; }
  .slug-browser { padding: 0 12px; font-size: 9px; }
  .slug-browser > i { display: none; }
  .slug-browser span { font-size: 8px; }
  .slug-chips span:last-child { display: none; }
  .security { gap: 40px; }
  .origin-diagram { min-height: 430px; padding: 18px; }
  .origin-card { width: 88%; min-height: 130px; padding: 17px; }
  .origin-ui, .code-lines { width: 62px; }
  .origin-bridge { transform: translate(-50%,-50%) rotate(34deg); }
  .final-cta h2 { font-size: 43px; }
  .site-footer { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .footer-brand, .site-footer > div { justify-self: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
