:root {
  color-scheme: dark;
  --bg: #090909;
  --panel: #141414;
  --panel-strong: #1d1d1d;
  --text: #fff8ef;
  --muted: #b9b0a7;
  --soft: #f4dfc7;
  --gold: #f0c46a;
  --rose: #ff6f91;
  --green: #63d6a3;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 111, 145, 0.18), transparent 34rem),
    radial-gradient(circle at 80% 10%, rgba(240, 196, 106, 0.16), transparent 30rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

img {
  display: block;
  max-width: 100%;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(9, 9, 9, 0.78);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(240, 196, 106, 0.5);
  border-radius: 12px;
  background: linear-gradient(135deg, #221a12, #5e2531);
  color: var(--soft);
  font-size: 13px;
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a:hover {
  color: var(--text);
}

.header-action,
.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  font-weight: 800;
  white-space: nowrap;
}

.header-action,
.primary-btn {
  background: linear-gradient(135deg, var(--soft), var(--gold));
  color: #1b1307;
  box-shadow: 0 12px 30px rgba(240, 196, 106, 0.18);
}

.header-action {
  padding: 0 18px;
  font-size: 14px;
}

.primary-btn,
.secondary-btn {
  padding: 0 22px;
}

.secondary-btn {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.hero {
  min-height: calc(100svh - 75px);
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(320px, 0.97fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(42px, 7vw, 96px) clamp(18px, 4vw, 64px) 54px;
  overflow: hidden;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(46px, 7vw, 86px);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.hero-text,
.hero-service-line,
.section-head p,
.split-section p,
.download-section p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-service-line {
  margin-top: -6px;
  color: var(--gold-soft);
  font-size: 15px;
  font-weight: 800;
}

.hero-actions,
.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
  max-width: 620px;
}

.hero-stats span {
  min-height: 78px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--muted);
}

.hero-stats strong {
  display: block;
  margin-bottom: 5px;
  color: var(--text);
  font-size: 23px;
}

.phone-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 600px;
}

.phone-shell {
  position: relative;
  width: min(360px, 82vw);
  min-height: 690px;
  padding: 20px;
  border: 10px solid #050505;
  border-radius: 44px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 20%),
    #111;
  box-shadow: var(--shadow);
}

.phone-shell::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  width: 96px;
  height: 24px;
  border-radius: 999px;
  background: #050505;
  transform: translateX(-50%);
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 34px;
  color: var(--muted);
  font-size: 13px;
}

.phone-top b {
  color: var(--green);
}

.live-host {
  margin-top: 26px;
  overflow: hidden;
  border-radius: 30px;
  background: linear-gradient(160deg, rgba(255, 111, 145, 0.26), rgba(240, 196, 106, 0.12));
}

.live-host img {
  width: 100%;
  height: 286px;
  object-fit: cover;
}

.live-host div {
  padding: 18px;
}

.live-host span,
.call-card span,
.floating-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.live-host h2 {
  margin: 4px 0;
  font-size: 34px;
}

.live-host p,
.call-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.call-card,
.chat-preview {
  margin-top: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
}

.call-card strong {
  display: block;
  margin: 6px 0;
  font-size: 24px;
}

.chat-preview {
  display: grid;
  gap: 8px;
}

.chat-preview p {
  width: fit-content;
  max-width: 88%;
  margin: 0;
  padding: 10px 12px;
  border-radius: 16px 16px 16px 4px;
  background: rgba(255, 255, 255, 0.1);
  color: #f8efe5;
  font-size: 13px;
}

.chat-preview .reply {
  justify-self: end;
  border-radius: 16px 16px 4px 16px;
  background: rgba(240, 196, 106, 0.18);
}

.phone-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 14px;
}

.phone-actions button {
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  background: #f4dfc7;
  color: #191007;
  font-weight: 900;
}

.floating-card {
  position: absolute;
  width: 172px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(20, 20, 20, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.floating-card strong {
  display: block;
  margin-top: 6px;
  font-size: 24px;
}

.card-one {
  left: 2%;
  top: 18%;
}

.card-two {
  right: 0;
  bottom: 22%;
}

.section,
.download-section,
.site-footer {
  padding: 74px clamp(18px, 4vw, 64px);
}

.section-head {
  max-width: 760px;
  margin-bottom: 30px;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0 clamp(18px, 4vw, 64px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--line);
}

.trust-band span {
  display: grid;
  min-height: 82px;
  place-items: center;
  padding: 18px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  font-weight: 900;
  text-align: center;
}

.about-section {
  padding-top: 84px;
}

.about-grid,
.feature-grid,
.host-grid,
.qa-grid,
.policy-grid,
.blog-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.about-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-grid article,
.qa-grid article,
.policy-grid article,
.about-panel,
.blog-card,
.contact-card,
.host-card,
.download-section {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.055);
}

.feature-grid article,
.about-panel,
.blog-card,
.contact-card {
  min-height: 250px;
  padding: 24px;
}

.about-panel {
  background:
    linear-gradient(135deg, rgba(255, 111, 145, 0.1), rgba(240, 196, 106, 0.055)),
    rgba(255, 255, 255, 0.055);
}

.about-panel.wide {
  grid-column: 1 / -1;
  min-height: auto;
}

.about-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.about-list span {
  min-height: 96px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.18);
  color: var(--text);
  line-height: 1.5;
}

.qa-grid,
.policy-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hidden {
  display: none !important;
}

.qa-grid article,
.policy-grid article {
  padding: 24px;
}

.feature-grid p,
.qa-grid p,
.policy-grid p,
.about-panel p,
.blog-card p,
.contact-card p,
.host-card p,
.safety-list,
.site-footer {
  color: var(--muted);
  line-height: 1.65;
}

.icon-dot {
  display: block;
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #fff, transparent 20px),
    linear-gradient(135deg, var(--rose), var(--gold));
}

.hosts-section {
  background: rgba(255, 255, 255, 0.025);
}

.host-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.host-card {
  overflow: hidden;
}

.host-card img {
  width: 100%;
  height: 290px;
  object-fit: cover;
}

.category-icon {
  position: relative;
  display: grid;
  height: 230px;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.18), transparent 8rem),
    linear-gradient(135deg, rgba(255, 111, 145, 0.2), rgba(240, 196, 106, 0.1));
}

.category-icon::before,
.category-icon::after,
.category-icon span::before,
.category-icon span::after {
  content: "";
  position: absolute;
  display: block;
}

.love-icon span {
  position: relative;
  width: 104px;
  height: 94px;
  transform: rotate(-45deg);
}

.love-icon span,
.love-icon span::before,
.love-icon span::after {
  background: linear-gradient(135deg, #ff5f87, #ffd48a);
  box-shadow: 0 22px 70px rgba(255, 95, 135, 0.32);
}

.love-icon span::before,
.love-icon span::after {
  width: 104px;
  height: 104px;
  border-radius: 50%;
}

.love-icon span::before {
  top: -52px;
  left: 0;
}

.love-icon span::after {
  top: 0;
  left: 52px;
}

.astro-icon span {
  position: relative;
  width: 138px;
  height: 138px;
  border: 5px solid #ffd48a;
  border-radius: 50%;
  box-shadow:
    inset -20px -14px 0 rgba(255, 212, 138, 0.18),
    0 22px 70px rgba(240, 196, 106, 0.24);
}

.astro-icon span::before {
  top: 24px;
  left: 34px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff2d9;
  box-shadow: 46px 40px 0 -5px #ff8fac, 18px 70px 0 -8px #ffd48a;
}

.astro-icon span::after {
  top: -22px;
  right: -16px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff8fac, #ffd48a);
}

.advice-icon span {
  position: relative;
  width: 132px;
  height: 108px;
  border-radius: 34px;
  background: linear-gradient(135deg, #63d6a3, #ffd48a);
  box-shadow: 0 22px 70px rgba(99, 214, 163, 0.22);
}

.advice-icon span::before {
  left: 30px;
  bottom: -24px;
  border-top: 30px solid #76d9a7;
  border-right: 30px solid transparent;
}

.advice-icon span::after {
  top: 38px;
  left: 30px;
  width: 72px;
  height: 10px;
  border-radius: 999px;
  background: rgba(20, 20, 20, 0.5);
  box-shadow: 0 24px 0 rgba(20, 20, 20, 0.5);
}

.host-card h3,
.host-card p,
.host-card span {
  margin-left: 22px;
  margin-right: 22px;
}

.host-card h3 {
  margin-top: 22px;
}

.host-card span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--gold);
  font-weight: 900;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 32px;
  align-items: center;
}

.safety-list {
  display: grid;
  gap: 12px;
}

.safety-list span {
  display: block;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
}

.download-section {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin: 42px clamp(18px, 4vw, 64px) 72px;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(240, 196, 106, 0.18), rgba(255, 111, 145, 0.12)),
    rgba(255, 255, 255, 0.06);
}

.faq-section {
  background: rgba(255, 255, 255, 0.025);
}

.policy-section {
  padding-top: 58px;
  padding-bottom: 58px;
}

.blog-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0)),
    var(--bg);
}

.blog-card {
  position: relative;
  overflow: hidden;
}

.blog-card::before {
  content: "";
  display: block;
  width: 54px;
  height: 54px;
  margin-bottom: 36px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 35% 30%, #fff, transparent 20px),
    linear-gradient(135deg, var(--rose), var(--gold));
}

.blog-card time,
.blog-card .blog-tag {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-card h3 {
  margin-top: 12px;
}

.blog-card a,
.contact-card a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--gold);
  font-weight: 900;
}

.blog-detail-section {
  background: rgba(255, 255, 255, 0.025);
}

.blog-detail {
  max-width: 920px;
}

.blog-detail .back-link {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--gold);
  font-weight: 900;
}

.blog-detail time,
.blog-detail .blog-keywords {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-detail p,
.blog-detail li {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.blog-detail ul {
  display: grid;
  gap: 12px;
  padding-left: 22px;
}

.contact-section {
  background: rgba(255, 255, 255, 0.025);
}

.host-apply-section {
  background:
    linear-gradient(180deg, rgba(240, 196, 106, 0.055), rgba(255, 255, 255, 0)),
    var(--bg);
}

.host-apply-form {
  display: grid;
  gap: 16px;
  max-width: 980px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.055);
}

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

.host-apply-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 900;
}

.host-apply-form input,
.host-apply-form select,
.host-apply-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.3);
  color: var(--text);
  font: inherit;
  font-weight: 700;
  padding: 12px 14px;
}

.host-apply-form textarea {
  resize: vertical;
}

.host-apply-form input[type="file"] {
  padding: 10px;
}

.checkbox-label {
  grid-template-columns: auto 1fr;
  align-items: start;
}

.checkbox-label input {
  width: 20px;
  min-height: 20px;
  margin-top: 3px;
}

.delete-account-section h1 {
  max-width: 920px;
}

.policy-page h1 {
  max-width: 920px;
}

.policy-page-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.policy-page-grid article {
  align-content: start;
}

.policy-page-grid a {
  color: var(--gold);
  font-weight: 900;
}

.policy-contact-card {
  margin-top: 28px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(245, 233, 218, 0.12), rgba(255, 255, 255, 0.03));
}

.policy-contact-card h2 {
  margin: 0 0 10px;
}

.policy-contact-card p {
  max-width: 760px;
  color: var(--muted);
}

.pricing-section {
  background: rgba(255, 255, 255, 0.025);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.pricing-grid article {
  display: grid;
  gap: 10px;
  min-height: 180px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
}

.pricing-grid span {
  color: var(--muted);
  font-weight: 900;
}

.pricing-grid strong {
  color: var(--gold);
  font-size: 30px;
  line-height: 1.1;
}

.pricing-grid p {
  margin: 0;
  color: var(--muted);
}

.support-page h1 {
  max-width: 940px;
}

.support-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 24px;
  align-items: start;
}

.support-form h2,
.support-panel h2 {
  margin: 0;
}

.support-panel {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.055);
}

.support-panel p,
.ticket-card p,
.ticket-card small {
  color: var(--muted);
}

.support-check {
  display: grid;
  gap: 14px;
}

.support-check label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 900;
}

.support-check input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.3);
  color: var(--text);
  font: inherit;
  font-weight: 700;
  padding: 12px 14px;
}

.ticket-list {
  display: grid;
  gap: 14px;
}

.ticket-card {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.22);
}

.ticket-card div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.ticket-card .ticket-thread,
.ticket-card .ticket-reply {
  display: grid;
}

.ticket-reply textarea {
  width: 100%;
  min-height: 74px;
}

.ticket-reply {
  gap: 8px;
}

.ticket-card strong,
.ticket-card span {
  color: var(--gold);
  font-weight: 900;
}

.ticket-card h3,
.ticket-card p {
  margin: 0;
}

.ticket-note {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(240, 196, 106, 0.08);
}

.delete-account-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 24px;
  align-items: start;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.form-actions button {
  border: 0;
  cursor: pointer;
}

.form-status {
  color: var(--muted);
  font-weight: 800;
}

.form-status.success {
  color: var(--green);
}

.form-status.error {
  color: #ff8fac;
}

.download-section div:first-child {
  max-width: 720px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(280px, 1.3fr) repeat(3, minmax(160px, 0.7fr));
  gap: 34px;
  border-top: 1px solid var(--line);
  background: #070707;
}

.footer-brand p {
  max-width: 420px;
  margin: 18px 0 0;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column h3 {
  margin-bottom: 6px;
  color: var(--text);
  font-size: 16px;
}

.footer-column a,
.footer-column span {
  color: var(--muted);
}

.footer-column a:hover {
  color: var(--text);
}

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

  .hero,
  .split-section,
  .delete-account-grid,
  .policy-page-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 48px;
  }

  .phone-stage {
    min-height: 560px;
  }

  .phone-shell {
    min-height: 640px;
  }

  .trust-band,
  .form-grid,
  .feature-grid,
  .host-grid,
  .qa-grid,
  .policy-grid,
  .blog-grid,
  .contact-grid,
  .about-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .download-section {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 16px;
  }

  .header-action {
    display: none;
  }

  h1 {
    font-size: 44px;
  }

  .hero-stats,
  .trust-band,
  .form-grid,
  .delete-account-grid,
  .policy-page-grid,
  .support-grid,
  .pricing-grid,
  .about-grid,
  .about-list,
  .feature-grid,
  .host-grid,
  .qa-grid,
  .policy-grid,
  .blog-grid,
  .contact-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .phone-stage {
    min-height: 530px;
  }

  .phone-shell {
    width: min(330px, 94vw);
    min-height: 610px;
    border-width: 8px;
  }

  .live-host img {
    height: 230px;
  }

  .floating-card {
    display: none;
  }

  .host-card img {
    height: 250px;
  }

  .category-icon {
    height: 210px;
  }

  .download-section {
    margin-left: 18px;
    margin-right: 18px;
  }
}
