/* ── Reset & Base ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:         #0D0D0D;
  --surface:    #1C1C1E;
  --surface2:   #2A2A2C;
  --primary:    #D94F68;
  --primary-dim:#3D1F28;
  --text:       #FFFFFF;
  --text-sec:   #8C8C8C;
  --text-hint:  #4A4A4A;
  --dot-self:   #D94F68;
  --dot-partner:#5B7FE8;
  --success:    #4CAF50;
  --border:     rgba(255,255,255,0.07);
  --radius:     12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

.accent { color: var(--primary); }

/* ── Section label ───────────────────────────────────────────────── */
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  color: var(--primary);
  margin-bottom: 14px;
}

.section-heading {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

/* ── NAV ─────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13, 13, 13, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text);
}
.logo-cal { color: var(--primary); }
.logo-icon {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  flex-shrink: 0;
}
.footer-logo .logo-icon { width: 24px; height: 24px; border-radius: 5px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  color: var(--text-sec);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.btn-nav {
  background: var(--primary) !important;
  color: var(--text) !important;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 14px !important;
  font-weight: 600;
  transition: opacity 0.2s;
}
.btn-nav:hover { opacity: 0.85; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.25s;
}
.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 12px 24px 20px;
  gap: 16px;
  border-top: 1px solid var(--border);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 16px;
  color: var(--text-sec);
  padding: 4px 0;
}

/* ── HERO ────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 24px 80px;
  max-width: 1100px;
  margin: 0 auto;
  gap: 48px;
}

.hero-inner { flex: 1; max-width: 600px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.25);
  color: #4CAF50;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 28px;
}

.dot-green {
  width: 7px; height: 7px;
  background: var(--success);
  border-radius: 50%;
  display: inline-block;
}

.hero-heading {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 17px;
  color: var(--text-sec);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 12px;
  transition: opacity 0.2s, transform 0.15s;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }

.hero-footnote {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--text-hint);
}
.hero-footnote svg { flex-shrink: 0; }

/* ── Phone mockup ────────────────────────────────────────────────── */
.hero-visual { flex-shrink: 0; }

.phone-mockup {
  width: 280px;
  background: var(--surface);
  border-radius: 36px;
  border: 1.5px solid var(--border);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
}

.phone-screen {
  padding: 28px 20px 24px;
}

.mock-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.mock-logo {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.3px;
}

.mock-chip {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--surface2);
  padding: 4px 10px;
  border-radius: 10px;
  font-size: 11px;
  color: var(--text);
}

.dot-green-sm {
  width: 5px; height: 5px;
  background: var(--success);
  border-radius: 50%;
  display: inline-block;
}

.mock-month {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-sec);
  text-align: center;
  margin-bottom: 12px;
}

.mock-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 6px;
}
.mock-days span {
  text-align: center;
  font-size: 9px;
  color: var(--text-hint);
  font-weight: 600;
}

.mock-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 16px;
}
.mock-grid span {
  text-align: center;
  font-size: 11px;
  color: var(--text-sec);
  padding: 4px 2px;
  border-radius: 50%;
  position: relative;
  line-height: 1.4;
}

.mock-grid span.selected {
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.mock-grid span.has-dot::after {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  margin: 2px auto 0;
}
.mock-grid span.self-dot::after { background: var(--dot-self); }
.mock-grid span.partner-dot::after { background: var(--dot-partner); }

.mock-legend {
  display: flex;
  gap: 14px;
  margin-bottom: 14px;
}
.mock-legend span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  color: var(--text-sec);
}

.dot-self {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--dot-self);
  display: inline-block;
  flex-shrink: 0;
}
.dot-partner {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--dot-partner);
  display: inline-block;
  flex-shrink: 0;
}

.mock-entry {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--surface2);
  padding: 10px 12px;
  border-radius: 10px;
}
.mock-entry .dot-self { margin-top: 4px; }
.mock-entry-title { font-size: 12px; font-weight: 600; color: var(--text); }
.mock-entry-sub { font-size: 10px; color: var(--text-sec); margin-top: 2px; }

/* ── FEATURES ────────────────────────────────────────────────────── */
.features {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.2s, transform 0.2s;
}
.feature-card:hover {
  border-color: rgba(217, 79, 104, 0.35);
  transform: translateY(-2px);
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.feature-icon svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
  stroke: var(--primary);
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.6;
}

/* ── HOW IT WORKS ────────────────────────────────────────────────── */
.how-it-works {
  padding: 100px 0;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 48px;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-dim);
  border: 1.5px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  flex-shrink: 0;
}

.step-body h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.step-body p {
  font-size: 13px;
  color: var(--text-sec);
  line-height: 1.6;
}

.step-line {
  flex: 0.3;
  height: 1px;
  background: var(--border);
  margin-top: 20px;
  min-width: 24px;
}

/* ── PRIVACY SECTION ─────────────────────────────────────────────── */
.privacy-section {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.privacy-inner {
  display: flex;
  align-items: flex-start;
  gap: 64px;
}

.privacy-text { flex: 1; }

.privacy-text p {
  color: var(--text-sec);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.privacy-list {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.privacy-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
}

.privacy-list li svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  stroke: var(--primary);
  flex-shrink: 0;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  padding: 12px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s;
}
.btn-outline:hover { background: var(--primary-dim); }

.privacy-card-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
  width: 240px;
}

.privacy-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: border-color 0.2s;
}
.privacy-card:hover { border-color: rgba(217,79,104,0.3); }
.privacy-card-alt { border-color: rgba(217,79,104,0.2); background: var(--primary-dim); }

.privacy-card-icon { font-size: 28px; margin-bottom: 10px; }

.privacy-card-stat {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}

.privacy-card-label {
  font-size: 12px;
  color: var(--text-sec);
  line-height: 1.4;
}

/* ── DOWNLOAD ────────────────────────────────────────────────────── */
.download {
  padding: 100px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.download-inner { max-width: 600px; margin: 0 auto; }

.download-sub {
  font-size: 16px;
  color: var(--text-sec);
  margin-top: 8px;
  margin-bottom: 40px;
}

.download-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-store {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  padding: 14px 24px;
  border-radius: 14px;
  transition: border-color 0.2s, transform 0.15s;
  min-width: 180px;
}
.btn-store:hover { border-color: rgba(217,79,104,0.4); transform: translateY(-2px); }

.store-sub { font-size: 10px; color: var(--text-sec); }
.store-name { font-size: 17px; font-weight: 700; }

.disclaimer {
  font-size: 12px;
  color: var(--text-hint);
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto;
}

/* ── FOOTER ──────────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo { font-size: 18px; }

.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 13px;
  color: var(--text-sec);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }

.footer-copy {
  font-size: 12px;
  color: var(--text-hint);
}

/* ── LEGAL PAGE ──────────────────────────────────────────────────── */
.legal-page {
  padding-top: 100px;
  padding-bottom: 80px;
}

.legal-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

.legal-header {
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.legal-header h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.legal-date {
  font-size: 13px;
  color: var(--text-hint);
  margin-bottom: 20px;
}

.legal-intro {
  font-size: 16px;
  color: var(--text-sec);
  line-height: 1.7;
  background: var(--surface);
  border-left: 3px solid var(--primary);
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
}

.legal-notice {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(232, 160, 32, 0.08);
  border: 1px solid rgba(232, 160, 32, 0.3);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-top: 20px;
}
.legal-notice-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.legal-notice strong { color: #E8A020; font-size: 14px; font-weight: 700; display: block; margin-bottom: 4px; }
.legal-notice p { font-size: 13px; color: var(--text-sec); line-height: 1.6; margin: 0; }

.legal-toc {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 48px;
}

.toc-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.legal-toc ol {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-toc a {
  font-size: 14px;
  color: var(--text-sec);
  transition: color 0.2s;
}
.legal-toc a:hover { color: var(--primary); }

.legal-body {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.legal-body section {
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.legal-body section:last-child { border-bottom: none; padding-bottom: 0; }

.legal-body h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}

.legal-body h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-top: 20px;
  margin-bottom: 10px;
}

.legal-body p {
  font-size: 15px;
  color: var(--text-sec);
  line-height: 1.75;
  margin-bottom: 14px;
}
.legal-body p:last-child { margin-bottom: 0; }

.legal-body ul, .legal-body ol {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}

.legal-body li {
  font-size: 15px;
  color: var(--text-sec);
  line-height: 1.65;
}

.legal-body li strong { color: var(--text); }

.legal-body a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Never list */
.never-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.never-item {
  display: flex;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 16px 20px;
  border-radius: 10px;
}

.never-icon { font-size: 20px; flex-shrink: 0; margin-top: 1px; }

.never-item strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.never-item p {
  font-size: 13px;
  color: var(--text-sec);
  line-height: 1.55;
  margin: 0;
}

/* Legal table */
.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin: 16px 0;
}

.legal-table th {
  text-align: left;
  padding: 10px 14px;
  background: var(--surface2);
  color: var(--text);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.legal-table td {
  padding: 12px 14px;
  color: var(--text-sec);
  border-top: 1px solid var(--border);
}

.legal-table th:first-child, .legal-table td:first-child { border-radius: 8px 0 0 8px; }
.legal-table th:last-child, .legal-table td:last-child { border-radius: 0 8px 8px 0; }

/* ── CONTACT PAGE ────────────────────────────────────────────────── */
.contact-container {
  max-width: 640px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

.contact-heading {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.contact-sub {
  font-size: 17px;
  color: var(--text-sec);
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-email-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--surface);
  border: 1.5px solid rgba(217, 79, 104, 0.3);
  border-radius: 16px;
  padding: 24px 28px;
  transition: border-color 0.2s, transform 0.15s;
  margin-bottom: 20px;
}
.contact-email-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.contact-email-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-email-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--primary);
}

.contact-email-label {
  font-size: 12px;
  color: var(--text-sec);
  margin-bottom: 4px;
}

.contact-email-addr {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.3px;
}

.contact-arrow {
  width: 20px;
  height: 20px;
  stroke: var(--text-hint);
  margin-left: auto;
  flex-shrink: 0;
}

.contact-note {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-sec);
  background: var(--surface);
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 48px;
}
.contact-note svg {
  width: 16px;
  height: 16px;
  stroke: var(--text-hint);
  flex-shrink: 0;
}
.contact-note strong { color: var(--text); }

.contact-topics-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.contact-topics-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.contact-topic {
  display: flex;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
}
.contact-topic span { font-size: 22px; flex-shrink: 0; }
.contact-topic strong { display: block; font-size: 14px; margin-bottom: 4px; }
.contact-topic p { font-size: 13px; color: var(--text-sec); line-height: 1.5; margin: 0; }

/* ── RESPONSIVE ──────────────────────────────────────────────────── */
@media (max-width: 860px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 100px 24px 60px;
    min-height: auto;
  }
  .hero-inner { max-width: 100%; }
  .hero-sub { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-footnote { justify-content: center; }

  .phone-mockup { width: 240px; }

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

  .steps {
    flex-direction: column;
    gap: 24px;
  }
  .step-line { display: none; }
  .step { flex-direction: row; }

  .privacy-inner { flex-direction: column; gap: 40px; }
  .privacy-card-wrap { flex-direction: row; width: 100%; }
  .privacy-card { flex: 1; }

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 580px) {
  .features-grid { grid-template-columns: 1fr; }
  .privacy-card-wrap { flex-direction: column; }
  .download-btns { flex-direction: column; align-items: center; }
  .contact-topics-grid { grid-template-columns: 1fr; }
  .contact-email-addr { font-size: 16px; }
}

/* ── DELETE ACCOUNT PAGE ─────────────────────────────────────────── */
.da-container {
  max-width: 480px;
  margin: 0 auto;
  padding: 0 24px;
}

.da-heading {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}

.da-sub {
  font-size: 15px;
  color: var(--text-sec);
  margin-bottom: 36px;
  line-height: 1.6;
}

.da-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.da-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.da-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-sec);
  letter-spacing: 0.2px;
}

.da-field input {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.da-field input::placeholder { color: var(--text-hint); }
.da-field input:focus { border-color: rgba(217, 79, 104, 0.5); }

.da-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  background: var(--primary);
  color: #fff;
  margin-top: 4px;
}
.da-btn:hover:not(:disabled) { opacity: 0.88; transform: translateY(-1px); }
.da-btn:disabled { opacity: 0.35; cursor: not-allowed; transform: none; }

.da-btn--danger {
  background: #c0392b;
}
.da-btn--danger:hover:not(:disabled) { background: #a93226; opacity: 1; }

.da-error {
  font-size: 13px;
  color: #E8A020;
  background: rgba(232, 160, 32, 0.08);
  border: 1px solid rgba(232, 160, 32, 0.25);
  border-radius: 8px;
  padding: 10px 14px;
}

.da-warning {
  background: rgba(192, 57, 43, 0.08);
  border: 1px solid rgba(192, 57, 43, 0.35);
  border-radius: 12px;
  padding: 20px 22px;
  margin-bottom: 28px;
}

.da-warning-title {
  font-size: 14px;
  font-weight: 700;
  color: #e74c3c;
  margin-bottom: 14px;
  line-height: 1.4;
}

.da-warning-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.da-warning-list li {
  font-size: 13px;
  color: var(--text-sec);
  line-height: 1.5;
  padding-left: 16px;
  position: relative;
}
.da-warning-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--text-hint);
}

/* Result screen */
.da-result-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
}
.da-result-icon--ok  { background: rgba(76, 175, 80, 0.12); color: #4CAF50; border: 1px solid rgba(76,175,80,0.3); }
.da-result-icon--err { background: rgba(192, 57, 43, 0.12); color: #e74c3c; border: 1px solid rgba(192,57,43,0.3); }

.da-result-heading {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 12px;
}

.da-result-body {
  font-size: 15px;
  color: var(--text-sec);
  line-height: 1.7;
}
.da-result-body a { color: var(--primary); text-decoration: underline; }
