/* DreamMeaning.today – Landing Page */
/* Base */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", sans-serif;
  background: radial-gradient(circle at top, #181824 0, #050509 55%, #020206 100%);
  color: #f7f7ff;
  -webkit-font-smoothing: antialiased;
}

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

.dm-shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */

.dm-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(24px);
  background: linear-gradient(to bottom, rgba(5, 5, 12, 0.95), rgba(5, 5, 12, 0.75), transparent);
}

.dm-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.dm-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
}

.dm-logo-mark {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.dm-logo-text {
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 11px;
  opacity: 0.85;
}

.dm-nav {
  display: flex;
  gap: 16px;
  font-size: 13px;
  opacity: 0.9;
}

.dm-nav a {
  position: relative;
  padding: 4px 0;
}

.dm-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.85);
  transition: width 0.18s ease;
}

.dm-nav a:hover::after {
  width: 100%;
}

/* Buttons */

.dm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 13px;
  border: 1px solid transparent;
  cursor: pointer;
  background: transparent;
  color: inherit;
  transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease, transform 0.12s ease;
}

.dm-btn--primary {
  background: linear-gradient(135deg, #f8c08b, #f4a5d4);
  color: #1b1020;
  font-weight: 500;
}

.dm-btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.5);
}

.dm-btn--ghost {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.02);
}

.dm-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.06);
}

.dm-btn-full {
  width: 100%;
}

.dm-nav-cta {
  font-size: 12px;
}

/* Hero */

.dm-hero {
  padding: 80px 0 56px;
}

.dm-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.9fr);
  gap: 32px;
  align-items: center;
}

.dm-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  opacity: 0.7;
  margin-bottom: 8px;
}

.dm-hero-copy h1 {
  font-size: clamp(32px, 5vw, 40px);
  line-height: 1.15;
  margin: 0 0 14px;
}

.dm-hero-sub {
  font-size: 15px;
  opacity: 0.83;
  max-width: 520px;
}

.dm-hero-actions {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dm-hero-note {
  margin-top: 12px;
  font-size: 12px;
  opacity: 0.8;
}

.dm-hero-card {
  background: radial-gradient(circle at top left, rgba(248, 192, 139, 0.18), rgba(15, 7, 20, 0.98));
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 18px 20px 20px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.7);
  font-size: 13px;
  line-height: 1.7;
}

.dm-hero-card-body strong {
  font-weight: 600;
}

.dm-hero-card-foot {
  margin-top: 10px;
  opacity: 0.75;
  font-size: 11px;
}

/* Sections */

.dm-section {
  padding: 70px 0;
}

.dm-section-inner {
  max-width: 1120px;
  margin: 0 auto;
}

/* How It Works */

.dm-section-how {
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.06), transparent 55%);
}

.dm-how-header {
  text-align: left;
  max-width: 720px;
  margin-bottom: 40px;
}

.dm-how-header h2 {
  font-size: 26px;
  line-height: 1.3;
  margin-bottom: 10px;
}

.dm-how-intro {
  font-size: 15px;
  opacity: 0.8;
}

.dm-how-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 40px;
}

.dm-how-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 18px 18px 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.dm-how-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.6);
  border-color: rgba(255, 255, 255, 0.14);
}

.dm-how-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.dm-how-card p {
  font-size: 14px;
  line-height: 1.55;
}

.dm-how-subtext {
  margin-top: 10px;
  opacity: 0.8;
  font-size: 13px;
}

.dm-how-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  opacity: 0.75;
  margin-bottom: 10px;
}

.dm-how-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 22px;
  align-items: flex-start;
}

.dm-how-trust {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 18px 20px 20px;
}

.dm-how-trust h4 {
  font-size: 15px;
  margin-bottom: 10px;
}

.dm-how-trust ul {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
}

.dm-how-trust li {
  position: relative;
  padding-left: 16px;
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 4px;
  opacity: 0.9;
}

.dm-how-trust li::before {
  content: "•";
  position: absolute;
  left: 4px;
  top: 0;
  opacity: 0.7;
  font-size: 12px;
}

.dm-how-note {
  font-size: 12px;
  opacity: 0.75;
  line-height: 1.6;
}

.dm-how-sample {
  background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.02)
    );
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 18px 20px 20px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
}

.dm-sample-body {
  font-size: 13px;
  line-height: 1.7;
  opacity: 0.95;
  margin-bottom: 10px;
}

.dm-sample-highlight {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
  font-style: italic;
  opacity: 0.9;
}

/* Form */

.dm-section-form {
  background: radial-gradient(circle at bottom, rgba(248, 192, 139, 0.08), transparent 55%);
}

.dm-form-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 26px;
  align-items: flex-start;
}

.dm-form-copy h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.dm-form-copy p {
  font-size: 14px;
  opacity: 0.85;
}

.dm-form-points {
  list-style: none;
  padding: 0;
  margin-top: 14px;
  font-size: 13px;
  opacity: 0.9;
}

.dm-form-points li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 4px;
}

.dm-form-points li::before {
  content: "•";
  position: absolute;
  left: 4px;
  top: 0;
  opacity: 0.7;
}

.dm-form-card {
  background: rgba(6, 4, 12, 0.98);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 18px 20px 20px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
}

.dm-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
  font-size: 13px;
}

.dm-field span {
  opacity: 0.85;
}

.dm-field input,
.dm-field textarea {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 9px 10px;
  background: rgba(8, 6, 16, 0.96);
  color: #f7f7ff;
  font-size: 13px;
  outline: none;
}

.dm-field textarea {
  min-height: 120px;
  resize: vertical;
}

.dm-field input::placeholder,
.dm-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.dm-field-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 10px;
}

.dm-form-note {
  margin-top: 8px;
  font-size: 11px;
  opacity: 0.7;
}

/* Pricing */

.dm-section-pricing {
  background: radial-gradient(circle at top, rgba(244, 165, 212, 0.1), transparent 55%);
}

.dm-pricing-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 36px;
}

.dm-pricing-header h2 {
  font-size: 24px;
  margin-bottom: 8px;
}

.dm-pricing-header p {
  font-size: 14px;
  opacity: 0.85;
}

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

.dm-price-card {
  background: rgba(6, 4, 12, 0.96);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 20px 20px 22px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
}

.dm-price-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.dm-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}

.dm-price-main {
  font-size: 26px;
  font-weight: 600;
}

.dm-price-term {
  font-size: 13px;
  opacity: 0.8;
}

.dm-price-sub {
  font-size: 13px;
  opacity: 0.85;
  margin-bottom: 10px;
}

.dm-price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  font-size: 13px;
}

.dm-price-card ul li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 3px;
}

.dm-price-card ul li::before {
  content: "•";
  position: absolute;
  left: 4px;
  top: 0;
  opacity: 0.75;
}

.dm-price-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(244, 165, 212, 0.16);
  border: 1px solid rgba(244, 165, 212, 0.6);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 8px;
}

.dm-price-card--accent {
  border-color: rgba(244, 165, 212, 0.75);
}

/* FAQ */

.dm-section-faq {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.dm-faq-header {
  margin-bottom: 20px;
}

.dm-faq-header h2 {
  font-size: 22px;
}

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

.dm-faq-item {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 14px;
  font-size: 13px;
}

.dm-faq-item summary {
  cursor: pointer;
  list-style: none;
}

.dm-faq-item summary::-webkit-details-marker {
  display: none;
}

.dm-faq-item summary::after {
  content: "+";
  float: right;
  opacity: 0.7;
}

.dm-faq-item[open] summary::after {
  content: "−";
}

.dm-faq-item p {
  margin-top: 8px;
  opacity: 0.85;
}

/* Footer */

.dm-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 18px 0 28px;
  background: #050509;
}

.dm-footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
}

.dm-footer-text {
  font-size: 12px;
  opacity: 0.8;
  max-width: 280px;
}

.dm-footer-text-small {
  max-width: 360px;
}

/* Feedback Section */

.dm-section-feedback {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: radial-gradient(circle at bottom, rgba(248, 192, 139, 0.06), transparent 55%);
}

.dm-feedback-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: start;
}

.dm-feedback-copy h2 {
  font-size: 24px;
  margin-bottom: 10px;
  margin-top: 8px;
}

.dm-feedback-text {
  font-size: 14px;
  opacity: 0.85;
  margin: 8px 0;
}

.dm-feedback-text-small {
  font-size: 12px;
  opacity: 0.75;
}

.dm-form-card {
  background: rgba(6, 4, 18, 0.96);
  border-radius: 20px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
}

.dm-feedback-form .dm-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
}

.dm-feedback-form .dm-field span {
  font-size: 13px;
  margin-bottom: 6px;
}

.dm-field-optional {
  opacity: 0.6;
  font-size: 12px;
}

.dm-feedback-form input,
.dm-feedback-form textarea,
.dm-feedback-form select {
  border-radius: 10px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(10, 8, 25, 0.95);
  color: white;
  font-size: 14px;
  font-family: inherit;
}

.dm-feedback-form textarea {
  min-height: 110px;
  resize: vertical;
}

.dm-feedback-form input:disabled,
.dm-feedback-form textarea:disabled,
.dm-feedback-form select:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.dm-btn-full {
  width: 100%;
}

.dm-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.dm-feedback-status {
  min-height: 18px;
  font-size: 13px;
  margin-top: 10px;
  text-align: center;
}

.dm-feedback-status.ok {
  color: #9cfba1;
}

.dm-feedback-status.err {
  color: #ffb8c1;
}

/* Responsive */

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

  .dm-nav-cta {
    display: none;
  }

  .dm-hero-inner {
    grid-template-columns: 1fr;
  }

  .dm-hero-card {
    margin-top: 20px;
  }

  .dm-how-grid {
    grid-template-columns: 1fr;
  }

  .dm-how-bottom {
    grid-template-columns: 1fr;
  }

  .dm-form-inner {
    grid-template-columns: 1fr;
  }

  .dm-field-grid {
    grid-template-columns: 1fr;
  }

  .dm-pricing-grid {
    grid-template-columns: 1fr;
  }

  .dm-faq-grid {
    grid-template-columns: 1fr;
  }

  .dm-feedback-grid {
    grid-template-columns: 1fr;
  }

  .dm-footer-inner {
    flex-direction: column;
  }

  .dm-section {
    padding: 56px 0;
  }
}
