@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #ffffff;
  --bg-soft: #f6f8fb;
  --text: #0b1220;
  --muted: #6b7280;
  --line: rgba(15, 23, 42, 0.08);
  --primary: #2f6bff;
  --primary-ink: #0b3bff;
  --navy: #0b1324;
  --navy-2: #111c33;
  --green: #00a57a;
  --card: #ffffff;
  --shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.06);
  --radius: 18px;
  --radius-lg: 22px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--text);
  background: radial-gradient(1200px 600px at 50% 0%, #f2f6ff 0%, #ffffff 55%);
  font-family: "Noto Sans KR", system-ui, -apple-system, Segoe UI, Roboto, "Apple SD Gothic Neo",
    "Malgun Gothic", sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
}

/* Layout */
.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}
.section {
  padding: 90px 0;
}
.section.soft {
  background: var(--bg-soft);
}
.section.compact {
  padding: 70px 0;
}
.center {
  text-align: center;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--primary);
}
.h2 {
  margin: 10px 0 0;
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.22;
  letter-spacing: -0.02em;
}
.lead {
  margin: 14px auto 0;
  max-width: 720px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}
.sublead {
  margin: 10px auto 0;
  max-width: 720px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  height: 74px;
}
.brand {
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: 18px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(11, 18, 32, 0.82);
  font-size: 13px;
  font-weight: 600;
}
.nav-links a {
  padding: 10px 6px;
  border-radius: 10px;
}
.nav-links a:hover {
  background: rgba(47, 107, 255, 0.08);
  color: var(--primary);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
  color: rgba(11, 18, 32, 0.9);
  font-weight: 800;
  font-size: 13px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
  cursor: pointer;
}
.btn.primary {
  background: linear-gradient(180deg, #2f6bff 0%, #245dff 100%);
  color: #fff;
  border-color: rgba(47, 107, 255, 0.3);
}
.btn.dark {
  background: linear-gradient(180deg, #121b2f 0%, #0b1324 100%);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 40px rgba(11, 19, 36, 0.25);
}
.btn.ghost {
  background: #fff;
  border-color: rgba(15, 23, 42, 0.12);
  box-shadow: none;
}
.hamburger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: rgba(11, 18, 32, 0.85);
  margin: 0 auto;
  border-radius: 999px;
  position: relative;
  top: 0;
}
.hamburger span::before,
.hamburger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: rgba(11, 18, 32, 0.85);
  border-radius: 999px;
}
.hamburger span::before {
  top: -6px;
}
.hamburger span::after {
  top: 6px;
}
.mobile-panel {
  display: none;
  padding: 10px 0 18px;
}
.mobile-panel a {
  display: block;
  padding: 12px 10px;
  border-radius: 12px;
  font-weight: 700;
  color: rgba(11, 18, 32, 0.9);
}
.mobile-panel a:hover {
  background: rgba(47, 107, 255, 0.08);
  color: var(--primary);
}

/* Hero */
.hero {
  padding: 54px 0 42px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(47, 107, 255, 0.07);
  border: 1px solid rgba(47, 107, 255, 0.18);
  color: rgba(47, 107, 255, 0.95);
  font-weight: 800;
  font-size: 12px;
}
.hero-title {
  margin: 18px 0 0;
  font-size: clamp(34px, 4.1vw, 56px);
  line-height: 1.12;
  letter-spacing: -0.03em;
}
.hero-title .accent {
  color: var(--primary);
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.hero-checks {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin: 18px 0 0;
  color: rgba(11, 18, 32, 0.6);
  font-weight: 700;
  font-size: 12px;
}
.check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.check svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
}
.hero-visual {
  margin: 38px auto 0;
  width: min(980px, 100%);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.06) 0%, rgba(15, 23, 42, 0.02) 100%);
}
.hero-visual-inner {
  position: relative;
  padding: 34px 28px 22px;
  background:
    radial-gradient(700px 260px at 40% 20%, rgba(47, 107, 255, 0.14) 0%, rgba(47, 107, 255, 0) 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.72) 100%);
}
.mock-frame {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 18px;
  overflow: hidden;
}
.mock-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.05) 0%, rgba(15, 23, 42, 0.02) 100%);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.18);
}
.mock-body {
  padding: 22px;
  background:
    radial-gradient(320px 220px at 30% 30%, rgba(47, 107, 255, 0.1) 0%, rgba(47, 107, 255, 0) 60%),
    #fff;
}
.mock-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 18px;
  align-items: start;
}
.mock-card {
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.9);
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
}
.mock-card .pad {
  padding: 14px;
}
.mock-bar {
  height: 10px;
  border-radius: 999px;
  background: rgba(11, 18, 32, 0.08);
  margin-bottom: 10px;
}
.mock-bar.w60 {
  width: 60%;
}
.mock-bar.w40 {
  width: 40%;
}
.mock-bar.w75 {
  width: 75%;
}
.mock-mini {
  display: grid;
  gap: 10px;
}
.mini-item {
  height: 34px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: linear-gradient(180deg, #ffffff 0%, rgba(15, 23, 42, 0.02) 100%);
}
.chart {
  width: 100%;
  height: 140px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: linear-gradient(180deg, rgba(47, 107, 255, 0.08) 0%, rgba(47, 107, 255, 0.02) 100%);
  position: relative;
  overflow: hidden;
}
.chart svg {
  position: absolute;
  inset: 0;
}
.floating {
  position: absolute;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.12);
  padding: 10px 12px;
  font-weight: 800;
  font-size: 12px;
  color: rgba(11, 18, 32, 0.9);
}
.floating.f1 {
  left: -16px;
  top: 80px;
  width: 170px;
}
.floating.f2 {
  right: 22px;
  top: 32px;
  width: 150px;
}
.floating.f3 {
  right: 30px;
  bottom: 20px;
  width: 170px;
}
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 900;
  border-radius: 999px;
  background: rgba(47, 107, 255, 0.1);
  color: rgba(47, 107, 255, 0.95);
}
.badge.green {
  background: rgba(0, 165, 122, 0.14);
  color: #007a5a;
}
.badge.dark {
  background: rgba(11, 19, 36, 0.08);
  color: rgba(11, 19, 36, 0.8);
}

/* Cards / grids */
.grid {
  display: grid;
  gap: 18px;
}
.grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid.cols-4 {
  grid-template-columns: repeat(4, 1fr);
}
.card {
  background: var(--card);
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.card.pad {
  padding: 18px;
}
.icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
}
.icon svg {
  width: 20px;
  height: 20px;
}
.card-title {
  margin: 10px 0 0;
  font-size: 16px;
  letter-spacing: -0.02em;
  font-weight: 900;
}
.card-desc {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
.note-link {
  margin-top: 18px;
  font-weight: 900;
  color: var(--primary);
  font-size: 13px;
}
.note-link span {
  opacity: 0.55;
  font-weight: 800;
  color: rgba(11, 18, 32, 0.66);
}

/* Services block cards */
.service-pair {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 34px;
}
.big-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: var(--shadow);
  min-height: 188px;
  padding: 22px;
  color: #fff;
  position: relative;
}
.big-card.navy {
  background: radial-gradient(540px 260px at 30% 20%, rgba(47, 107, 255, 0.25) 0%, rgba(47, 107, 255, 0) 60%),
    linear-gradient(135deg, #0b1324 0%, #15264b 100%);
}
.big-card.green {
  background: radial-gradient(540px 260px at 70% 0%, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0) 60%),
    linear-gradient(135deg, #037c60 0%, #00a57a 100%);
}
.big-card h3 {
  margin: 10px 0 0;
  font-size: 18px;
  font-weight: 950;
  letter-spacing: -0.02em;
}
.big-card p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  line-height: 1.6;
  max-width: 480px;
}
.chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.chip {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
}

/* Process cards */
.step {
  overflow: hidden;
}
.step .thumb {
  height: 150px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.08) 0%, rgba(15, 23, 42, 0.02) 100%);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.step .body {
  padding: 16px 16px 18px;
}
.step .kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 950;
  color: rgba(11, 18, 32, 0.9);
}
.step .num {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(47, 107, 255, 0.1);
  color: var(--primary);
  font-size: 12px;
}

/* Portfolio */
.filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.filter-btn {
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  color: rgba(11, 18, 32, 0.72);
  cursor: pointer;
}
.filter-btn.active {
  background: rgba(11, 19, 36, 1);
  color: #fff;
  border-color: rgba(11, 19, 36, 0.4);
}
.portfolio-grid {
  margin-top: 26px;
}
.project {
  overflow: hidden;
}
.project .thumb {
  height: 150px;
  background: linear-gradient(180deg, rgba(47, 107, 255, 0.08) 0%, rgba(47, 107, 255, 0.02) 100%);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  overflow: hidden;
  position: relative;
}
.project .thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
}
.project .body {
  padding: 16px;
}
.project h4 {
  margin: 10px 0 0;
  font-size: 15px;
  font-weight: 950;
  letter-spacing: -0.02em;
}
.meta {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.meta .tag {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  background: rgba(15, 23, 42, 0.06);
  color: rgba(11, 18, 32, 0.68);
  border: 1px solid rgba(15, 23, 42, 0.08);
}
.pill-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
}
.thumb-wrap {
  position: relative;
  overflow: hidden;
}
.pill-tag .tag {
  background: rgba(255, 255, 255, 0.92);
}
.tag.purple {
  background: rgba(122, 84, 255, 0.14);
  color: #5a39ff;
  border-color: rgba(122, 84, 255, 0.18);
}
.tag.orange {
  background: rgba(255, 149, 0, 0.14);
  color: #c26c00;
  border-color: rgba(255, 149, 0, 0.18);
}
.tag.green {
  background: rgba(0, 165, 122, 0.14);
  color: #007a5a;
  border-color: rgba(0, 165, 122, 0.18);
}
.tag.blue {
  background: rgba(47, 107, 255, 0.14);
  color: #1f56ff;
  border-color: rgba(47, 107, 255, 0.18);
}
.tag.red {
  background: rgba(255, 59, 48, 0.14);
  color: #c22922;
  border-color: rgba(255, 59, 48, 0.18);
}

/* Pricing */
.pricing-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}
.price-card {
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 14px;
}
.price-card.featured {
  background: linear-gradient(180deg, #101a2f 0%, #0b1324 100%);
  color: #fff;
  box-shadow: 0 30px 70px rgba(11, 19, 36, 0.35);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-10px);
}
.price-card .label {
  font-weight: 900;
  color: rgba(11, 18, 32, 0.76);
  font-size: 13px;
}
.price-card.featured .label {
  color: rgba(255, 255, 255, 0.78);
}
.price {
  font-size: 28px;
  font-weight: 950;
  letter-spacing: -0.02em;
}
.features {
  display: grid;
  gap: 10px;
  color: rgba(11, 18, 32, 0.72);
  font-weight: 700;
  font-size: 13px;
}
.price-card.featured .features {
  color: rgba(255, 255, 255, 0.82);
}
.features .f {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.features .f svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  margin-top: 2px;
}
.price-card.featured .features .f svg {
  color: #8fb0ff;
}

.cost-grid {
  margin-top: 26px;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}
.cost-card {
  padding: 18px;
}
.cost-card h4 {
  margin: 0;
  font-size: 14px;
  font-weight: 950;
}
.cost-list {
  margin-top: 12px;
  display: grid;
  gap: 10px;
  color: rgba(11, 18, 32, 0.72);
  font-size: 12px;
  font-weight: 700;
}
.cost-item {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px dashed rgba(15, 23, 42, 0.12);
  padding-top: 10px;
}
.cost-item:first-child {
  border-top: none;
  padding-top: 0;
}
.cost-item b {
  font-weight: 900;
  color: rgba(11, 18, 32, 0.88);
}
.callout {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(47, 107, 255, 0.16);
  background: rgba(47, 107, 255, 0.06);
  color: rgba(11, 18, 32, 0.72);
  font-size: 12px;
  line-height: 1.7;
  font-weight: 700;
}

/* FAQ accordion */
.faq {
  max-width: 860px;
  margin: 28px auto 0;
  display: grid;
  gap: 12px;
}
details {
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: #fff;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 18px;
  font-weight: 900;
  color: rgba(11, 18, 32, 0.9);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
summary::-webkit-details-marker {
  display: none;
}
.chev {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  display: grid;
  place-items: center;
  color: rgba(11, 18, 32, 0.6);
  flex: none;
}
details[open] .chev {
  background: rgba(47, 107, 255, 0.08);
  color: var(--primary);
  border-color: rgba(47, 107, 255, 0.16);
}
details .content {
  padding: 0 18px 16px;
  color: rgba(11, 18, 32, 0.68);
  font-size: 13px;
  line-height: 1.7;
  font-weight: 700;
}

/* Contact */
.contact-wrap {
  display: grid;
  place-items: center;
  margin-top: 34px;
}
.form-card {
  width: min(820px, 100%);
  padding: 18px;
}
form {
  display: grid;
  gap: 12px;
  margin-top: 4px;
}
.row-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
label {
  display: grid;
  gap: 8px;
  font-weight: 900;
  font-size: 12px;
  color: rgba(11, 18, 32, 0.76);
}
input,
select,
textarea {
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  padding: 12px 12px;
  font-size: 13px;
  font-weight: 700;
  outline: none;
  background: #fff;
  color: rgba(11, 18, 32, 0.92);
}
input::placeholder,
textarea::placeholder {
  color: rgba(11, 18, 32, 0.35);
}
textarea {
  min-height: 96px;
  resize: vertical;
}
.fineprint {
  text-align: center;
  color: rgba(11, 18, 32, 0.48);
  font-weight: 700;
  font-size: 11px;
  margin-top: 6px;
}

/* Footer */
footer {
  background: linear-gradient(180deg, #0b1324 0%, #070d1a 100%);
  color: rgba(255, 255, 255, 0.82);
  padding: 52px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 26px;
}
.footer-title {
  color: #fff;
  font-weight: 950;
  letter-spacing: -0.02em;
  margin: 0;
}
.footer-desc {
  margin: 10px 0 0;
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 700;
}
.footer-col h4 {
  margin: 0;
  font-size: 12px;
  font-weight: 950;
  color: rgba(255, 255, 255, 0.92);
}
.footer-links {
  margin-top: 12px;
  display: grid;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.72);
}
.footer-links a:hover {
  color: #fff;
}
.footer-bottom {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 700;
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.62);
}

/* Responsive */
@media (max-width: 980px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: inline-grid;
    place-items: center;
  }
  .service-pair {
    grid-template-columns: 1fr;
  }
  .grid.cols-3 {
    grid-template-columns: 1fr;
  }
  .grid.cols-4 {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .price-card.featured {
    transform: none;
  }
  .cost-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .mock-grid {
    grid-template-columns: 1fr;
  }
  .floating {
    display: none;
  }
  .row-2 {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 520px) {
  .container {
    width: min(var(--container), calc(100% - 32px));
  }
  .section {
    padding: 70px 0;
  }
  .hero {
    padding-top: 34px;
  }
  .hero-visual-inner {
    padding: 22px 16px 14px;
  }
  .mock-body {
    padding: 16px;
  }
}

.domain-dialog {
  border: 0;
  padding: 0;
  border-radius: 18px;
  width: min(760px, calc(100% - 28px));
  box-shadow: 0 24px 80px rgba(11, 18, 32, 0.28);
}
.domain-dialog::backdrop {
  background: rgba(11, 18, 32, 0.55);
  backdrop-filter: blur(4px);
}
.domain-modal {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
}
.domain-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.domain-title {
  font-weight: 950;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: rgba(11, 18, 32, 0.92);
}
.domain-sub {
  margin-top: 6px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
  color: rgba(11, 18, 32, 0.56);
}
.domain-close {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
  font-weight: 900;
  font-size: 18px;
  color: rgba(11, 18, 32, 0.72);
  cursor: pointer;
}
.domain-form {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}
.domain-field {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}
.domain-field input {
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  padding: 13px 14px;
  font-size: 14px;
  font-weight: 800;
  outline: none;
}
.domain-hint {
  font-size: 12px;
  font-weight: 700;
  color: rgba(11, 18, 32, 0.52);
}
.domain-results {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}
.domain-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(15, 23, 42, 0.02);
}
.domain-name {
  font-weight: 950;
  font-size: 13px;
  letter-spacing: -0.01em;
  color: rgba(11, 18, 32, 0.9);
}
.domain-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
}
.domain-badge {
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
  color: rgba(11, 18, 32, 0.76);
}
.domain-badge.ok {
  background: rgba(0, 165, 122, 0.12);
  border-color: rgba(0, 165, 122, 0.18);
  color: #007a5a;
}
.domain-badge.no {
  background: rgba(255, 59, 48, 0.12);
  border-color: rgba(255, 59, 48, 0.18);
  color: #c22922;
}
.domain-badge.wait {
  background: rgba(47, 107, 255, 0.1);
  border-color: rgba(47, 107, 255, 0.18);
  color: rgba(47, 107, 255, 0.95);
}
.domain-copy {
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
  padding: 9px 10px;
  font-size: 12px;
  font-weight: 900;
  color: rgba(11, 18, 32, 0.78);
  cursor: pointer;
}
.domain-note {
  margin-top: 12px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.6;
  color: rgba(11, 18, 32, 0.5);
}
@media (max-width: 520px) {
  .domain-field {
    grid-template-columns: 1fr;
  }
  .domain-field .btn {
    width: 100%;
  }
}
