* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  color-scheme: dark;
}

:root {
  --bg-dark: #151311;
  --bg-muted: #1d1a17;
  --bg-surface: #221f1b;
  --text-primary: #f3eee6;
  --text-secondary: #b8ac9d;
  --accent-sage: #7f8a82;
  --accent-sage-deep: #6f7c74;
  --border-subtle: rgba(243, 238, 230, 0.12);
  --border-strong: rgba(127, 138, 130, 0.34);
  --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.28);
}

.acl-banner {
  max-width: 900px;
  margin: 80px auto;
  background: linear-gradient(135deg, rgba(127, 138, 130, 0.14), rgba(212, 206, 198, 0.06));
  border: 1px solid var(--border-strong);
  border-radius: 28px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.acl-banner img {
  width: 333px;
  max-width: 80%;
  border-radius: 24px;
  object-fit: contain;
  filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.28));
}

.acl-banner h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 48px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.acl-banner p {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 700px;
}

body.home-page {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(127, 138, 130, 0.16), transparent 32%),
    radial-gradient(circle at top right, rgba(212, 206, 198, 0.06), transparent 28%),
    var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(21, 19, 17, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-primary);
}

.logo-icon {
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo:hover .logo-icon {
  transform: rotate(5deg) scale(1.1);
}

.logo-text {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}

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

.nav-cta {
  display: flex;
  gap: 16px;
}

.btn-primary {
  padding: 10px 20px;
  background: var(--accent-sage);
  color: var(--text-primary);
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(127, 138, 130, 0.24);
}

.btn-secondary {
  padding: 10px 20px;
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(243, 238, 230, 0.16);
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-secondary:hover {
  background: rgba(243, 238, 230, 0.04);
  border-color: rgba(243, 238, 230, 0.24);
}

.hero {
  max-width: 1400px;
  margin: 0 auto;
  padding: 110px 24px 72px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 56px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(127, 138, 130, 0.12);
  border: 1px solid rgba(127, 138, 130, 0.28);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-sage);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(58px, 9vw, 96px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin-bottom: 24px;
  max-width: 10ch;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 0 32px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-buttons a {
  flex: 1;
  padding: 16px 32px;
  font-size: 16px;
  border-radius: 14px;
  text-align: center;
  min-width: 200px;
  max-width: 420px;
  box-sizing: border-box;
}

.hero-note {
  max-width: 560px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 15px;
}

.hero-note strong {
  color: var(--text-primary);
}

.hero-visual {
  background: linear-gradient(180deg, rgba(34, 31, 27, 0.96), rgba(29, 26, 23, 0.96));
  border: 1px solid var(--border-subtle);
  border-radius: 32px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.visual-frame {
  background: rgba(243, 238, 230, 0.03);
  border: 1px solid rgba(243, 238, 230, 0.08);
  border-radius: 24px;
  padding: 24px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--accent-sage);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.visual-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 38px;
  line-height: 1;
  margin-bottom: 18px;
}

.transaction-card {
  background: #d4cec6;
  border: 1px solid rgba(43, 38, 34, 0.08);
  border-radius: 22px;
  padding: 20px;
  margin-bottom: 24px;
}

.transaction-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
  color: #6f6860;
  font-size: 14px;
}

.transaction-row strong {
  color: #2b2622;
  font-size: 16px;
}

.timeline {
  position: relative;
  margin: 24px 0 12px;
  padding-left: 30px;
}

.timeline:before {
  content: "";
  position: absolute;
  left: 9px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: rgba(243, 238, 230, 0.14);
}

.timeline-step {
  position: relative;
  padding-bottom: 20px;
}

.timeline-step:last-child {
  padding-bottom: 0;
}

.timeline-step:before {
  content: "";
  position: absolute;
  left: -30px;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(243, 238, 230, 0.18);
  background: var(--bg-surface);
}

.timeline-step.is-active:before {
  background: var(--accent-sage);
  border-color: var(--accent-sage);
  box-shadow: 0 0 0 6px rgba(127, 138, 130, 0.14);
}

.timeline-step small {
  display: block;
  color: var(--accent-sage);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  margin-bottom: 4px;
}

.timeline-step strong {
  display: block;
  font-size: 17px;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.timeline-step p {
  color: var(--text-secondary);
  font-size: 14px;
}

section {
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 0 24px;
}

h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(42px, 5vw, 62px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title {
  text-align: left;
  margin-bottom: 36px;
  max-width: 760px;
}

.section-title h2 {
  color: var(--text-primary);
}

.section-title p {
  color: var(--text-secondary);
  font-size: 18px;
  max-width: 680px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.card {
  background: linear-gradient(180deg, rgba(34, 31, 27, 0.95), rgba(29, 26, 23, 0.95));
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 32px;
  transition: transform 0.25s ease, border-color 0.25s ease;
  box-shadow: var(--shadow-soft);
}

.card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
}

.card-label {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(243, 238, 230, 0.05);
  color: var(--text-secondary);
}

.card-label.is-live {
  background: rgba(119, 131, 122, 0.14);
  color: #cbd5ce;
}

.card-label.is-build {
  background: rgba(127, 138, 130, 0.14);
  color: #d8e0db;
}

.card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.card ul {
  list-style: none;
  padding: 0;
}

.card li {
  padding: 10px 0;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

.card li strong {
  color: var(--text-primary);
}

.content-section {
  background: linear-gradient(180deg, rgba(34, 31, 27, 0.98), rgba(29, 26, 23, 0.98));
  border: 1px solid var(--border-subtle);
  border-radius: 28px;
  padding: 48px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-soft);
}

.content-section h2 {
  font-size: 46px;
  margin-bottom: 24px;
}

.content-section p {
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.7;
}

.content-section ul {
  list-style: none;
  padding: 0;
  margin-top: 24px;
}

.content-section li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  color: var(--text-secondary);
  font-size: 17px;
}

.content-section li:before {
  content: "01";
  position: absolute;
  left: 0;
  color: var(--accent-sage);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.content-section li:nth-child(2):before { content: "02"; }
.content-section li:nth-child(3):before { content: "03"; }
.content-section li:nth-child(4):before { content: "04"; }
.content-section li:nth-child(5):before { content: "05"; }

.link-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 32px 0;
}

.link-list a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.link-list a:hover {
  color: var(--accent-sage);
}

.feedback-form {
  background: linear-gradient(180deg, #d8d2ca, #cfc8c0);
  border: 1px solid rgba(43, 38, 34, 0.08);
  border-radius: 28px;
  padding: 48px;
  margin-top: 48px;
  box-shadow: var(--shadow-soft);
}

.feedback-form h2 {
  font-size: 32px;
  margin-bottom: 24px;
  color: #2b2622;
}

textarea,
input[type="email"] {
  width: 100%;
  background: rgba(243, 238, 230, 0.7);
  border: 1px solid rgba(43, 38, 34, 0.12);
  border-radius: 12px;
  padding: 16px;
  color: #2b2622;
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  margin-bottom: 16px;
  transition: border-color 0.2s;
}

textarea::placeholder,
input[type="email"]::placeholder {
  color: #6f6860;
}

textarea:focus,
input[type="email"]:focus {
  outline: none;
  border-color: var(--accent-sage);
}

textarea {
  resize: vertical;
  min-height: 150px;
}

button[type="button"] {
  width: 100%;
  padding: 16px;
  background: var(--accent-sage);
  color: var(--text-primary);
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

button[type="button"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(127, 138, 130, 0.28);
}

.receipt-demo {
  margin-top: 24px;
  background:
    radial-gradient(circle at top left, rgba(127, 138, 130, 0.12), transparent 35%),
    linear-gradient(180deg, rgba(34, 31, 27, 0.98), rgba(29, 26, 23, 0.98));
  border: 1px solid var(--border-subtle);
  border-radius: 30px;
  padding: 30px;
  box-shadow: var(--shadow-soft);
}

.receipt-demo-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}

.receipt-demo-header h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.receipt-demo-header p {
  color: var(--text-secondary);
  font-size: 16px;
  max-width: 620px;
}

.receipt-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(127, 138, 130, 0.14);
  border: 1px solid rgba(127, 138, 130, 0.28);
  color: #d8e0db;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.receipt-card {
  background: linear-gradient(180deg, #ded8d0, #d4cec6);
  border: 1px solid rgba(43, 38, 34, 0.1);
  border-radius: 18px;
  padding: 0;
  position: relative;
  overflow: hidden;
  max-width: 860px;
  margin: 0 auto;
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.34),
    0 8px 24px rgba(43, 38, 34, 0.14);
}

.receipt-card:before {
  content: "PENDING RECEIPT";
  position: absolute;
  right: 20px;
  bottom: 20px;
  color: rgba(43, 38, 34, 0.05);
  font-size: 34px;
  font-weight: 800;
  letter-spacing: 0.14em;
  pointer-events: none;
}

.receipt-card:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-sage), #9ba79f);
}

.receipt-card-shell {
  position: relative;
  padding: 18px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(243, 238, 230, 0.03), rgba(243, 238, 230, 0.01));
  border: 1px solid rgba(243, 238, 230, 0.06);
}

.receipt-card-body {
  position: relative;
  z-index: 1;
}

.receipt-card-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 0;
  padding: 22px 24px 18px;
  position: relative;
  z-index: 1;
  border-bottom: 1px solid rgba(43, 38, 34, 0.1);
}

.receipt-letterhead {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.receipt-card-title {
  color: #2b2622;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.receipt-card-subtitle {
  color: #5c554f;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 2px;
}

.receipt-amount {
  padding: 18px 24px 8px;
  color: #2b2622;
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.receipt-recipient {
  padding: 0 24px 18px;
  color: #5c554f;
  font-size: 14px;
  position: relative;
  z-index: 1;
}

.receipt-status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 24px 18px;
  position: relative;
  z-index: 1;
}

.receipt-status-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.receipt-status-pill.is-verified {
  background: rgba(127, 138, 130, 0.18);
  border: 1px solid rgba(127, 138, 130, 0.34);
  color: #465148;
}

.receipt-status-pill.is-rule {
  background: rgba(43, 38, 34, 0.06);
  border: 1px solid rgba(43, 38, 34, 0.08);
  color: #403a35;
}

.receipt-info-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
  padding: 0 24px 12px;
  position: relative;
  z-index: 1;
}

.receipt-info-item {
  padding: 12px 0;
  border-top: 1px dashed rgba(43, 38, 34, 0.14);
}

.receipt-info-label {
  display: block;
  color: #6f6860;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.receipt-info-value {
  display: block;
  color: #2b2622;
  font-size: 14px;
  font-weight: 700;
  word-break: break-word;
}

.receipt-proof {
  display: none;
}

.receipt-footer-note {
  margin: 0 24px 24px;
  padding-top: 12px;
  border-top: 1px solid rgba(43, 38, 34, 0.12);
  color: #4a433d;
  font-size: 13px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

footer {
  text-align: center;
  padding: 64px 24px;
  border-top: 1px solid var(--border-subtle);
  margin-top: 120px;
  color: var(--text-secondary);
  font-size: 14px;
}

.hero-logo {
  width: 228px;
  height: 228px;
  margin: 0 0 24px;
  filter: none;
}

.hero-logo img {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  object-fit: contain;
}

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

  .hero {
    grid-template-columns: 1fr;
    padding: 72px 24px 48px;
    gap: 32px;
  }

  .content-section {
    padding: 32px 24px;
  }

  .feedback-form {
    padding: 32px 24px;
  }

  .receipt-demo,
  .receipt-card {
    padding: 24px;
  }

  .receipt-demo {
    padding: 22px;
  }

  .receipt-card-shell {
    padding: 12px;
  }

  .receipt-demo-header,
  .receipt-card-top {
    flex-direction: column;
  }

  .receipt-card {
    padding: 0;
  }

  .receipt-card-top,
  .receipt-amount,
  .receipt-recipient,
  .receipt-status-row,
  .receipt-info-row,
  .receipt-footer-note {
    padding-left: 20px;
    padding-right: 20px;
  }

  .receipt-info-row {
    grid-template-columns: 1fr;
  }

  .receipt-grid {
    grid-template-columns: 1fr;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: none;
  }
}
