:root {
  --bg: #0f0f10;
  --surface: #181819;
  --field: #101011;
  --text: #f4f0e8;
  --muted: #aba49a;
  --line: #2d2d2f;
  --accent: #006bff;
  --accent-hover: #2f86ff;
  --onyx: #f4f0e8;
  --success: #73d89f;
  --error: #ff8c8c;
  --radius: 18px;
  --shadow: 0 1px 0 rgba(255, 255, 255, 0.04), 0 18px 34px rgba(0, 0, 0, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
  color-scheme: dark;
}

body {
  margin: 0;
  min-height: 100%;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.site-ruler {
  position: fixed;
  top: 24px;
  left: 50%;
  z-index: 0;
  width: min(1120px, calc(100% - 40px));
  height: 1px;
  background: var(--onyx);
  opacity: 0.14;
  transform: translateX(-50%);
}

.page-shell {
  width: min(1120px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 72px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 58px;
  align-items: center;
}

.hero,
.inquiry-panel {
  min-width: 0;
}

.hero {
  max-width: 100%;
}

.eyebrow,
.panel-kicker {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.052em;
  line-height: 0.96;
}

h1 {
  width: 100%;
  max-width: 100%;
  font-size: clamp(3.4rem, 8vw, 7.2rem);
  overflow-wrap: anywhere;
  word-break: normal;
}

#domain-name {
  display: block;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-all;
}

h2 {
  font-size: clamp(2rem, 3.4vw, 3.1rem);
}

.intro {
  max-width: 620px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.8vw, 1.25rem);
  line-height: 1.65;
}

.intro::after {
  display: block;
  width: 92px;
  height: 3px;
  margin-top: 34px;
  background: var(--onyx);
  content: "";
}

.inquiry-panel {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.panel-copy p:last-child {
  margin: 14px 0 28px;
  color: var(--muted);
  line-height: 1.6;
}

.inquiry-form {
  display: grid;
  gap: 18px;
}

.field {
  display: grid;
  gap: 8px;
}

label {
  font-size: 0.92rem;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 14px;
  background: var(--field);
  color: var(--text);
  font: inherit;
}

input::placeholder,
textarea::placeholder {
  color: #77716a;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
button:focus-visible {
  outline: 3px solid rgba(0, 107, 255, 0.22);
  outline-offset: 2px;
}

.verification {
  display: grid;
  gap: 8px;
  min-width: 0;
  min-height: 104px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--field);
}

.verification-label {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
}

.verification-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.verification-note[data-state="error"] {
  color: var(--error);
}

.verification:has(iframe) .verification-note {
  display: none;
}

button {
  border: 0;
  border-radius: 999px;
  padding: 15px 22px;
  background: var(--accent);
  color: white;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  transition:
    background-color 160ms ease,
    transform 160ms ease;
}

button:hover {
  background: var(--accent-hover);
}

button:active {
  transform: translateY(1px);
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.68;
}

.form-status {
  min-height: 1.45em;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.form-status[data-state="success"] {
  color: var(--success);
}

.form-status[data-state="error"] {
  color: var(--error);
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 980px) {
  .site-ruler {
    top: 16px;
    width: min(100% - 28px, 660px);
  }

  .page-shell {
    width: min(100% - 28px, 660px);
    padding: 42px 0;
    grid-template-columns: 1fr;
    gap: 36px;
    align-items: start;
  }

  .inquiry-panel {
    padding: 24px;
  }

  h1 {
    font-size: clamp(2.5rem, 11vw, 4.25rem);
  }
}

@media (max-width: 460px) {
  .page-shell {
    width: min(100% - 22px, 660px);
  }

  h1 {
    font-size: clamp(2.15rem, 11vw, 3.2rem);
  }
}
