:root {
  --teal: #0ABFBC;
  --teal-light: #0ABFBC22;
  --teal-mid: #0ABFBC55;
  --teal-deep: #08A5A2;
  --silver: #C0C0C0;
  --silver-light: #C0C0C018;
  --silver-mid: #C0C0C055;
  --silver-deep: #8E8E8E;
  --dark: #0D1117;
  --dark2: #151B24;
  --dark3: #1C2530;
  --text: #E8EDF2;
  --text-muted: #8B98A8;
  --text-dim: #4A5568;
  --line: rgba(255,255,255,0.08);
}
* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: ''; position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 0; opacity: 0.4;
}
.orb { position: fixed; border-radius: 50%; filter: blur(80px); pointer-events: none; z-index: 0; }
.orb-1 { width: 500px; height: 500px; background: var(--teal); opacity: 0.06; top: -150px; right: -100px; }
.orb-2 { width: 400px; height: 400px; background: var(--silver); opacity: 0.05; bottom: 200px; left: -150px; }
.orb-3 { width: 300px; height: 300px; background: var(--teal); opacity: 0.04; bottom: 0; right: 200px; }
.content { position: relative; z-index: 1; }

nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 40px;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
  gap: 16px; flex-wrap: wrap;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 15px; font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.02em;
  text-decoration: none;
}
.nav-back {
  color: var(--text-muted); font-size: 13px;
  text-decoration: none; letter-spacing: 0.02em;
  transition: color .15s;
}
.nav-back:hover { color: var(--teal); }

.hero { max-width: 1100px; margin: 0 auto; padding: 70px 40px 40px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--silver-light);
  border: 1px solid var(--silver-mid);
  border-radius: 30px;
  padding: 6px 18px;
  font-size: 11px; font-weight: 500;
  color: var(--silver);
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease both;
}
.eyebrow-dot { width: 6px; height: 6px; background: var(--silver); border-radius: 50%; }

h1.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 5.2vw, 56px);
  font-weight: 900;
  line-height: 1.04;
  margin-bottom: 22px;
  animation: fadeUp 0.6s ease 0.1s both;
}
h1.hero-title em { color: var(--teal); font-style: italic; }
h1.hero-title .silver { color: var(--silver); font-style: italic; }

.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-muted);
  font-weight: 300;
  max-width: 540px;
  margin-bottom: 32px;
  animation: fadeUp 0.6s ease 0.2s both;
}

.hero-bullets {
  list-style: none;
  margin-bottom: 36px;
  animation: fadeUp 0.6s ease 0.3s both;
}
.hero-bullets li {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--text);
}
.hero-bullets li::before {
  content: ''; flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--teal-light);
  border: 1px solid var(--teal-mid);
  margin-top: 3px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230ABFBC'%3E%3Cpath d='M6.5 11.5L3 8l1.4-1.4 2.1 2.1L11.6 3.5 13 4.9z'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
}

.asset-preview-wrap {
  position: relative;
  animation: fadeUp 0.6s ease 0.4s both;
}
.asset-preview {
  background: linear-gradient(180deg, var(--dark2), var(--dark));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px 28px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px var(--teal-light);
  position: relative;
  overflow: hidden;
}
.asset-preview::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--silver), var(--teal));
}
.asset-preview-label {
  font-size: 10px; font-weight: 700;
  color: var(--silver);
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 14px;
}
.asset-preview-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px; font-weight: 700;
  color: var(--text); line-height: 1.2;
  margin-bottom: 18px;
}
.asset-preview-meta {
  display: flex; gap: 24px; flex-wrap: wrap;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 12px; color: var(--text-muted);
  letter-spacing: 0.02em;
}
.asset-preview-meta strong { color: var(--teal); display: block; font-size: 18px; font-family: 'Playfair Display', serif; }
.asset-preview-body { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.asset-preview-body p { margin-bottom: 10px; }

.section { max-width: 1100px; margin: 0 auto; padding: 70px 40px; }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700; line-height: 1.2;
  margin-bottom: 16px;
}
.section-title em { color: var(--teal); font-style: italic; }
.teal-label {
  font-size: 11px; font-weight: 500;
  color: var(--teal);
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 14px;
}
.section-sub {
  color: var(--text-muted);
  font-weight: 300; font-size: 16px;
  max-width: 600px; margin-bottom: 40px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2px;
  border: 2px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}
.benefit-card {
  background: var(--dark2);
  padding: 28px;
  position: relative;
  transition: background 0.3s;
}
.benefit-card:hover { background: var(--dark3); }
.benefit-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--teal), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.benefit-card:hover::before { opacity: 1; }
.benefit-num {
  width: 40px; height: 40px;
  border-radius: 11px;
  background: var(--teal-light);
  border: 1px solid var(--teal-mid);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 16px; font-weight: 700;
  color: var(--teal);
  margin-bottom: 18px;
}
.benefit-title {
  font-size: 16px; font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
  font-family: 'Playfair Display', serif;
}
.benefit-body { font-size: 13.5px; color: var(--text-muted); font-weight: 300; line-height: 1.7; }

.host {
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.02));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.host-inner {
  max-width: 1000px; margin: 0 auto;
  padding: 70px 40px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: center;
}
.host-photo-wrap { position: relative; width: 240px; height: 320px; }
.host-photo {
  width: 100%; height: 100%;
  border-radius: 18px;
  object-fit: cover;
  display: block;
  border: 1px solid var(--teal-mid);
}
.host-ring {
  position: absolute; inset: -10px;
  border-radius: 22px;
  border: 1px solid var(--teal);
  opacity: 0.3;
  pointer-events: none;
}
.host h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 700; margin-bottom: 14px;
}
.host h2 em { color: var(--teal); font-style: italic; }
.host p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 12px;
  font-weight: 300;
}
.host p strong { color: var(--text); font-weight: 500; }

.form-section { background: radial-gradient(ellipse at center, rgba(255,255,255,0.04), transparent); }
.form-wrap {
  max-width: 580px; margin: 0 auto;
  padding: 70px 40px 90px;
  text-align: center;
}
.form-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 24px;
  padding: 44px 38px;
  text-align: left;
  box-shadow: 0 0 80px var(--teal-light);
  position: relative;
  overflow: hidden;
}
.form-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal), var(--silver), var(--teal), transparent);
  opacity: 0.6;
}
.form-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px; font-weight: 700;
  margin-bottom: 8px; text-align: center;
}
.form-card .form-sub {
  font-size: 14px; color: var(--text-muted);
  text-align: center;
  margin-bottom: 28px;
  font-weight: 300;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}
.form-group input {
  width: 100%;
  padding: 14px 16px;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 10px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}
.form-group input::placeholder { color: var(--text-dim); }
.form-group input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-light);
}
.form-consent {
  display: flex; gap: 10px; align-items: flex-start;
  margin: 12px 0 18px;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.55;
}
.form-consent input {
  appearance: none; -webkit-appearance: none;
  width: 18px; height: 18px;
  border: 1px solid var(--teal-mid);
  border-radius: 4px;
  background: var(--dark);
  flex-shrink: 0; margin-top: 2px;
  cursor: pointer;
  position: relative;
}
.form-consent input:checked {
  background: var(--teal); border-color: var(--teal);
}
.form-consent input:checked::after {
  content: ''; position: absolute;
  left: 5px; top: 1px;
  width: 5px; height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.form-submit {
  width: 100%; padding: 18px;
  background: var(--teal);
  color: #fff;
  border: none; border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px; font-weight: 500;
  cursor: pointer;
  letter-spacing: 0.02em;
  margin-top: 4px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 30px var(--teal-mid);
}
.form-submit:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 0 50px var(--teal-mid);
}
.form-submit:disabled { opacity: 0.5; cursor: not-allowed; }

.form-fine {
  text-align: center;
  font-size: 12px; color: var(--text-dim);
  margin-top: 18px; line-height: 1.6;
}

.form-error {
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.30);
  color: #fca5a5;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  margin-bottom: 16px;
  display: none;
}

.success-card {
  background: var(--dark2);
  border: 1px solid var(--teal-mid);
  border-radius: 24px;
  padding: 56px 40px;
  text-align: center;
  display: none;
  box-shadow: 0 0 80px var(--teal-light);
}
.success-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 30px; font-weight: 700;
  margin-bottom: 14px;
}
.success-card h3 em { color: var(--teal); font-style: italic; }
.success-card p {
  color: var(--text-muted);
  font-size: 16px; line-height: 1.7;
  max-width: 460px; margin: 0 auto 12px;
  font-weight: 300;
}
.success-actions {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  margin-top: 28px;
}
.btn-success {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal);
  color: #fff;
  padding: 14px 26px;
  border-radius: 60px;
  text-decoration: none;
  font-weight: 500; font-size: 15px;
  box-shadow: 0 0 30px var(--teal-mid);
  transition: transform .2s, box-shadow .2s;
}
.btn-success:hover { transform: translateY(-1px); box-shadow: 0 0 50px var(--teal-mid); }
.btn-success.alt {
  background: transparent;
  color: var(--teal);
  border: 1px solid var(--teal-mid);
  box-shadow: none;
}
.btn-success.alt:hover { background: var(--teal-light); }

footer {
  border-top: 1px solid var(--line);
  padding: 40px;
  text-align: center;
  color: var(--text-dim);
  font-size: 13px; line-height: 1.7;
}
footer strong { color: var(--teal); font-weight: 500; }

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

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .asset-preview { max-width: 460px; margin: 0 auto; }
  .host-inner { grid-template-columns: 1fr; gap: 32px; text-align: center; padding: 60px 20px; }
  .host-photo-wrap { margin: 0 auto; }
}
@media (max-width: 768px) {
  nav { padding: 16px 20px; }
  .hero { padding: 50px 20px 30px; }
  .section { padding: 50px 20px; }
  .form-wrap { padding: 50px 20px 80px; }
  .form-card { padding: 32px 22px; }
  .form-row { grid-template-columns: 1fr; }
  footer { padding: 32px 20px; }
}
