@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: #f7f4ee;
  min-height: 100vh;
  color: #171c18;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #0c6b46;
  text-decoration: none;
}
a:hover {
  color: #084c33;
  text-decoration: underline;
}

.page-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

nav.navbar {
  background: rgba(247, 244, 238, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #e4dfd3;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  position: sticky;
  top: 0;
  z-index: 50;
  transition: box-shadow 0.25s ease;
}
nav.navbar.scrolled {
  box-shadow: 0 1px 0 rgba(23, 28, 24, 0.03), 0 10px 28px -14px rgba(23, 28, 24, 0.18);
}
nav.navbar .nav-brand {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #171c18;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
nav.navbar .nav-brand:hover {
  text-decoration: none;
  color: #0c6b46;
}
nav.navbar .nav-brand .brand-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: cover;
}
nav.navbar .nav-right {
  display: flex;
  align-items: center;
  gap: 6px;
}
nav.navbar .nav-right .nav-link {
  padding: 8px 14px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #2a332c;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.15s ease;
}
nav.navbar .nav-right .nav-link:hover {
  color: #0c6b46;
  background: #e7f0ea;
  text-decoration: none;
}
nav.navbar .nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  margin-left: 8px;
  background: #0c6b46;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}
nav.navbar .nav-cta:hover {
  background: #084c33;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px -8px rgba(8, 76, 51, 0.5);
}
nav.navbar .nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 60;
}
nav.navbar .nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #171c18;
  border-radius: 2px;
  transition: all 0.3s ease;
}
nav.navbar .nav-toggle span + span {
  margin-top: 5px;
}
nav.navbar .nav-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
nav.navbar .nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}
nav.navbar .nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

main {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 48px 24px;
}
main:has(.landing) {
  display: block;
  padding: 0;
}
main .terms-page {
  width: 100%;
  max-width: 720px;
}

.login-container {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.login-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  padding: 40px;
  width: 100%;
}
.login-card .login-header {
  text-align: center;
  margin-bottom: 32px;
}
.login-card .login-header .login-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #0c6b46, #084c33);
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}
.login-card .login-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 4px;
}
.login-card .login-header p {
  font-size: 0.875rem;
  color: #6b7280;
}
.login-card .field {
  margin-bottom: 20px;
}
.login-card .field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 6px;
}
.login-card .field input[type=email], .login-card .field input[type=password], .login-card .field input[type=text] {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 0.9375rem;
  color: #111827;
  background: #f9fafb;
  transition: all 0.15s ease;
  outline: none;
}
.login-card .field input[type=email]:focus, .login-card .field input[type=password]:focus, .login-card .field input[type=text]:focus {
  border-color: #0c6b46;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
  background: #ffffff;
}
.login-card .checkbox-field {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.login-card .checkbox-field input[type=checkbox] {
  width: 16px;
  height: 16px;
  accent-color: #0c6b46;
}
.login-card .checkbox-field label {
  font-size: 0.875rem;
  color: #4b5563;
}
.login-card .actions input[type=submit] {
  width: 100%;
  padding: 11px 20px;
  background: #0c6b46;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
}
.login-card .actions input[type=submit]:hover {
  background: #084c33;
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}
.login-card .shared-links {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
  text-align: center;
}
.login-card .shared-links a {
  font-size: 0.875rem;
  color: #6b7280;
}
.login-card .shared-links a:hover {
  color: #0c6b46;
}

footer {
  background: #171c18;
  padding: 44px 24px;
  color: rgba(247, 244, 238, 0.55);
  font-size: 0.8125rem;
}
footer .footer-content {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 32px;
  flex-wrap: wrap;
}
footer .footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 600;
  color: #f7f4ee;
}
footer .footer-brand .footer-brand-icon {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  object-fit: cover;
}
footer .footer-links {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
footer .footer-link {
  color: rgba(247, 244, 238, 0.65);
  font-size: 0.8125rem;
  transition: color 0.15s ease;
}
footer .footer-link:hover {
  color: #ffffff;
  text-decoration: none;
}
footer .footer-copy {
  width: 100%;
  padding-top: 18px;
  border-top: 1px solid rgba(247, 244, 238, 0.12);
  color: rgba(247, 244, 238, 0.4);
}
footer a {
  color: rgba(247, 244, 238, 0.65);
}
footer a:hover {
  color: #ffffff;
}

.terms-page {
  width: 100%;
}
.terms-page .terms-hero {
  text-align: center;
  background: linear-gradient(135deg, #0a3a26 0%, #052e1f 100%);
  border-radius: 12px;
  padding: 48px 32px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.terms-page .terms-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
  pointer-events: none;
}
.terms-page .terms-hero .terms-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 24px;
  position: relative;
}
.terms-page .terms-hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  position: relative;
}
.terms-page .terms-hero h1 .highlight {
  background: linear-gradient(to right, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.terms-page .terms-hero .terms-hero-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
  position: relative;
}
.terms-page .terms-content {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  padding: 48px;
  width: 100%;
}
.terms-page .terms-content::-webkit-scrollbar {
  width: 6px;
}
.terms-page .terms-content::-webkit-scrollbar-track {
  background: transparent;
}
.terms-page .terms-content::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}
.terms-page .terms-intro {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 32px;
  padding: 20px;
  background: #f9fafb;
  border-radius: 8px;
  border-left: 3px solid #0c6b46;
}
.terms-page .terms-intro strong {
  color: #111827;
}
.terms-page .terms-section {
  margin-bottom: 32px;
  padding-left: 24px;
  border-left: 2px solid #e5e7eb;
}
.terms-page .terms-section:last-child {
  margin-bottom: 0;
}
.terms-page .terms-section .section-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #0c6b46, #084c33);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 8px;
  margin-bottom: 8px;
}
.terms-page .terms-section h2 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
  padding-bottom: 6px;
  border-bottom: 1px solid #e5e7eb;
}
.terms-page .terms-section h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1f2937;
  margin: 16px 0 8px;
}
.terms-page .terms-section p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 12px;
}
.terms-page .terms-section ul.terms-list {
  list-style: none;
  padding: 0;
  margin-top: 12px;
}
.terms-page .terms-section ul.terms-list li {
  font-size: 0.875rem;
  line-height: 1.7;
  color: #374151;
  padding: 8px 0 8px 28px;
  position: relative;
}
.terms-page .terms-section ul.terms-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #9ca3af;
}
.terms-page .terms-section ul.terms-list .terms-nav {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #e5e7eb;
  text-align: center;
}
.terms-page .terms-section ul.terms-list .terms-nav a {
  font-size: 0.875rem;
  color: #0c6b46;
  font-weight: 500;
}
.terms-page .terms-section ul.terms-list .terms-nav a:hover {
  color: #084c33;
}

.support-page {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
}
.support-page .support-hero {
  text-align: center;
  background: linear-gradient(135deg, #0a3a26 0%, #052e1f 100%);
  border-radius: 12px;
  padding: 48px 32px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.support-page .support-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
  pointer-events: none;
}
.support-page .support-hero .terms-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 24px;
  position: relative;
}
.support-page .support-hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  position: relative;
}
.support-page .support-hero h1 .highlight {
  background: linear-gradient(to right, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.support-page .support-hero .terms-hero-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
  position: relative;
}
.support-page .support-hero .support-search {
  position: relative;
  max-width: 520px;
  margin: 28px auto 0;
}
.support-page .support-hero .support-search .search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  color: #9ca3af;
  z-index: 1;
}
.support-page .support-hero .support-search input[type=search] {
  width: 100%;
  padding: 14px 20px 14px 44px;
  border: none;
  border-radius: 12px;
  font-size: 0.9375rem;
  color: #111827;
  background: #ffffff;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  outline: none;
  transition: box-shadow 0.15s ease;
  -webkit-appearance: none;
}
.support-page .support-hero .support-search input[type=search]:focus {
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.35), 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}
.support-page .support-hero .support-search input[type=search]::placeholder {
  color: #9ca3af;
}
.support-page .status-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(6, 150, 105, 0.1);
  border: 1px solid rgba(6, 150, 105, 0.35);
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.support-page .status-banner .status-banner-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #059669;
  box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.15);
  flex-shrink: 0;
}
.support-page .status-banner .status-banner-text {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 200px;
}
.support-page .status-banner .status-banner-text strong {
  color: #111827;
  font-size: 0.875rem;
}
.support-page .status-banner .status-banner-text span {
  color: #4b5563;
  font-size: 0.8125rem;
}
.support-page .status-banner .status-banner-live {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #059669;
  background: rgba(5, 150, 105, 0.12);
  padding: 4px 12px;
  border-radius: 999px;
}
.support-page .support-content {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  padding: 40px;
}
.support-page .support-content .support-section-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 20px;
}
.support-page .support-content .help-hubs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.support-page .support-content .help-hubs .hub-card {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  transition: all 0.15s ease;
}
.support-page .support-content .help-hubs .hub-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  border-color: #e7f0ea;
  background: #e7f0ea;
}
.support-page .support-content .help-hubs .hub-card .hub-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #0c6b46, #084c33);
  color: #ffffff;
  font-size: 1.125rem;
  margin-bottom: 14px;
}
.support-page .support-content .help-hubs .hub-card h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 6px;
}
.support-page .support-content .help-hubs .hub-card p {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: #4b5563;
}
.support-page .support-content .no-results {
  margin-top: 20px;
  padding: 16px 20px;
  background: #f9fafb;
  border-radius: 8px;
  color: #4b5563;
  font-size: 0.875rem;
  text-align: center;
}
.support-page .support-content .feedback-card {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #e5e7eb;
  text-align: center;
}
.support-page .support-content .feedback-card h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 12px;
}
.support-page .support-content .feedback-card .feedback-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.support-page .support-content .feedback-card .feedback-actions .feedback-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background: #ffffff;
  color: #374151;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
}
.support-page .support-content .feedback-card .feedback-actions .feedback-btn:hover {
  border-color: #0c6b46;
  color: #0c6b46;
  background: #e7f0ea;
}
.support-page .support-content .feedback-card .feedback-actions .feedback-btn:focus-visible {
  outline: 2px solid #0c6b46;
  outline-offset: 2px;
}
.support-page .support-content .feedback-card .feedback-thanks {
  margin-top: 12px;
  color: #059669;
  font-size: 0.875rem;
  font-weight: 500;
}
.support-page .contact-section {
  margin-top: 32px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  padding: 40px;
}
.support-page .contact-section h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}
.support-page .contact-section .contact-intro {
  font-size: 0.875rem;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 24px;
}
.support-page .contact-section .contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.support-page .contact-section .contact-grid .contact-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #f9fafb;
  text-decoration: none;
  transition: all 0.15s ease;
}
.support-page .contact-section .contact-grid .contact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  border-color: #0c6b46;
  background: #e7f0ea;
  text-decoration: none;
}
.support-page .contact-section .contact-grid .contact-card .contact-icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.support-page .contact-section .contact-grid .contact-card h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 4px;
}
.support-page .contact-section .contact-grid .contact-card p {
  font-size: 0.875rem;
  color: #0c6b46;
  margin-bottom: 10px;
}
.support-page .contact-section .contact-grid .contact-card .contact-meta {
  margin-top: auto;
  font-size: 0.75rem;
  color: #6b7280;
}

.contact-page {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
}
.contact-page .contact-flash {
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 0.875rem;
  margin-bottom: 24px;
}
.contact-page .contact-flash-success {
  background: rgba(6, 150, 105, 0.1);
  border: 1px solid rgba(6, 150, 105, 0.35);
  color: #059669;
}
.contact-page .contact-flash-error {
  background: rgba(225, 29, 72, 0.08);
  border: 1px solid rgba(225, 29, 72, 0.3);
  color: #be123c;
}
.contact-page .contact-hero {
  text-align: center;
  background: linear-gradient(135deg, #0a3a26 0%, #052e1f 100%);
  border-radius: 12px;
  padding: 48px 32px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.contact-page .contact-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
  pointer-events: none;
}
.contact-page .contact-hero .terms-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 24px;
  position: relative;
}
.contact-page .contact-hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  position: relative;
}
.contact-page .contact-hero h1 .highlight {
  background: linear-gradient(to right, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.contact-page .contact-hero .terms-hero-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
  position: relative;
}
.contact-page .contact-content {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  padding: 40px;
}
.contact-page .contact-content .contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.contact-page .contact-content .contact-info-grid .contact-info-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #f9fafb;
  text-decoration: none;
  transition: all 0.15s ease;
}
.contact-page .contact-content .contact-info-grid .contact-info-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  border-color: #0c6b46;
  background: #e7f0ea;
  text-decoration: none;
}
.contact-page .contact-content .contact-info-grid .contact-info-card .contact-info-icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.contact-page .contact-content .contact-info-grid .contact-info-card h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 4px;
}
.contact-page .contact-content .contact-info-grid .contact-info-card p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #374151;
  word-break: break-word;
}
.contact-page .contact-content .contact-social {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #e5e7eb;
}
.contact-page .contact-content .contact-social h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 12px;
}
.contact-page .contact-content .contact-social .contact-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.contact-page .contact-content .contact-social .contact-social-links .social-link {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background: #ffffff;
  color: #374151;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.15s ease;
}
.contact-page .contact-content .contact-social .contact-social-links .social-link:hover {
  border-color: #0c6b46;
  color: #0c6b46;
  background: #e7f0ea;
  text-decoration: none;
}
.contact-page .contact-content .contact-form-section {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid #e5e7eb;
}
.contact-page .contact-content .contact-form-section h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}
.contact-page .contact-content .contact-form-section .contact-form-intro {
  font-size: 0.875rem;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 24px;
}
.contact-page .contact-content .contact-form-section .contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-page .contact-content .contact-form-section .contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-page .contact-content .contact-form-section .contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-page .contact-content .contact-form-section .contact-form .form-group label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #374151;
}
.contact-page .contact-content .contact-form-section .contact-form .form-group input,
.contact-page .contact-content .contact-form-section .contact-form .form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 0.9375rem;
  color: #111827;
  background: #ffffff;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  box-sizing: border-box;
}
.contact-page .contact-content .contact-form-section .contact-form .form-group input:focus,
.contact-page .contact-content .contact-form-section .contact-form .form-group textarea:focus {
  border-color: #0c6b46;
  box-shadow: 0 0 0 3px #e7f0ea;
}
.contact-page .contact-content .contact-form-section .contact-form .form-group input::placeholder,
.contact-page .contact-content .contact-form-section .contact-form .form-group textarea::placeholder {
  color: #9ca3af;
}
.contact-page .contact-content .contact-form-section .contact-form .form-group textarea {
  resize: vertical;
  font-family: inherit;
}
.contact-page .contact-content .contact-form-section .contact-form .contact-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1f2937;
  cursor: pointer;
}
.contact-page .contact-content .contact-form-section .contact-form .contact-checkbox input[type=checkbox] {
  width: 16px;
  height: 16px;
  accent-color: #0c6b46;
  cursor: pointer;
}
.contact-page .contact-content .contact-form-section .contact-form .contact-checkbox-hint {
  font-size: 0.8125rem;
  color: #6b7280;
  margin-top: -8px;
}
.contact-page .contact-content .contact-form-section .contact-form .contact-submit {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: #0c6b46;
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.15s ease;
}
.contact-page .contact-content .contact-form-section .contact-form .contact-submit:hover {
  background: #084c33;
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}
.contact-page .contact-content .contact-form-section .contact-form .contact-submit:focus-visible {
  outline: 2px solid #0c6b46;
  outline-offset: 2px;
}
.contact-page .contact-content .contact-form-section .contact-form-thanks {
  margin-top: 16px;
  color: #059669;
  font-size: 0.875rem;
  font-weight: 500;
}

@media (max-width: 640px) {
  nav.navbar {
    padding: 12px 16px;
  }
  nav.navbar .nav-toggle {
    display: flex;
    flex-direction: column;
  }
  nav.navbar .nav-right {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 2px;
    padding: 8px 12px;
    background: #ffffff;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 8px 24px -6px rgba(23, 28, 24, 0.15);
    margin-top: 8px;
  }
  nav.navbar .nav-right.nav-open {
    display: flex;
  }
  nav.navbar .nav-right .nav-link {
    padding: 10px 14px;
    font-size: 0.9375rem;
    border-radius: 8px;
    width: 100%;
  }
  nav.navbar .nav-cta {
    margin-left: auto;
    padding: 7px 14px;
    white-space: nowrap;
  }
  main {
    padding: 24px 16px;
  }
  main:has(.landing) {
    padding: 0;
  }
  .login-card {
    padding: 24px;
  }
  .terms-page .terms-content {
    padding: 24px;
  }
  .terms-page .terms-hero {
    padding: 32px 20px;
  }
  .terms-page .terms-hero h1 {
    font-size: 1.75rem;
  }
  .support-page .support-hero {
    padding: 32px 20px;
  }
  .support-page .support-hero h1 {
    font-size: 1.75rem;
  }
  .support-page .support-content,
  .support-page .contact-section {
    padding: 24px;
  }
  .support-page .help-hubs,
  .support-page .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-page .contact-hero {
    padding: 32px 20px;
  }
  .contact-page .contact-hero h1 {
    font-size: 1.75rem;
  }
  .contact-page .contact-content {
    padding: 24px;
  }
  .contact-page .contact-info-grid,
  .contact-page .contact-form .form-row {
    grid-template-columns: 1fr;
  }
  .plan-card {
    padding: 28px 24px;
  }
  .plan-price {
    font-size: 1.75rem;
  }
}
html {
  scroll-behavior: smooth;
}

::selection {
  background: rgba(233, 161, 59, 0.35);
}

.landing {
  width: 100%;
  color: #171c18;
  overflow-x: clip;
}
.landing .wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.landing .section {
  padding: clamp(72px, 9vw, 128px) 0;
}
.landing .eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0c6b46;
  margin-bottom: 20px;
}
.landing .eyebrow::before {
  content: "";
  width: 26px;
  height: 1.5px;
  background: #e9a13b;
  flex-shrink: 0;
}
.landing .eyebrow-center {
  justify-content: center;
}
.landing .eyebrow-band {
  color: #e9a13b;
}
.landing h1, .landing h2 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: #171c18;
}
.landing h2 {
  font-size: clamp(2rem, 4.2vw, 3rem);
  line-height: 1.08;
}
.landing .section-lede {
  color: #5b655e;
  font-size: 1.0625rem;
  line-height: 1.7;
  max-width: 46ch;
  margin-top: 18px;
}
.landing .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.2s cubic-bezier(0.22, 1, 0.36, 1), background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.landing .btn svg {
  transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.landing .btn:hover svg {
  transform: translateX(3px);
}
.landing .btn-primary {
  background: #0c6b46;
  color: #ffffff;
  box-shadow: 0 1px 2px rgba(8, 76, 51, 0.25), 0 10px 22px -10px rgba(8, 76, 51, 0.5);
}
.landing .btn-primary:hover {
  background: #084c33;
  transform: translateY(-2px);
  text-decoration: none;
  box-shadow: 0 2px 4px rgba(8, 76, 51, 0.25), 0 16px 28px -12px rgba(8, 76, 51, 0.55);
}
.landing .btn-ghost {
  background: transparent;
  color: #171c18;
  border: 1px solid #e4dfd3;
}
.landing .btn-ghost:hover {
  border-color: #171c18;
  text-decoration: none;
  transform: translateY(-2px);
}
.landing .btn-band {
  background: #f7f4ee;
  color: #171c18;
  margin-top: 28px;
}
.landing .btn-band:hover {
  background: #ffffff;
  transform: translateY(-2px);
  text-decoration: none;
}
.landing .store-buttons {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.landing .store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #171c18;
  color: #f7f4ee;
  padding: 10px 20px 10px 16px;
  border-radius: 12px;
  text-decoration: none;
  line-height: 1.15;
  transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.2s cubic-bezier(0.22, 1, 0.36, 1), background 0.2s ease, border-color 0.2s ease;
}
.landing .store-btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.landing .store-btn .store-btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.landing .store-btn .store-btn-text small {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(247, 244, 238, 0.6);
}
.landing .store-btn .store-btn-text strong {
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #ffffff;
}
.landing .store-btn:hover {
  background: #2a332c;
  transform: translateY(-2px);
  box-shadow: 0 14px 26px -14px rgba(23, 28, 24, 0.45);
  text-decoration: none;
}
.landing .store-btn--soon {
  background: transparent;
  color: #171c18;
  border: 1px solid #e4dfd3;
  cursor: default;
}
.landing .store-btn--soon .store-btn-text small {
  color: #5b655e;
}
.landing .store-btn--soon .store-btn-text strong {
  color: #171c18;
}
.landing .store-btn--soon:hover {
  background: transparent;
  border-color: #171c18;
  box-shadow: none;
  transform: none;
}
.landing .hero-landing {
  padding-top: clamp(64px, 9vw, 116px);
}
.landing .hero-inner {
  display: grid;
  gap: 56px;
  align-items: center;
}
@media (min-width: 1020px) {
  .landing .hero-inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 64px;
  }
}
.landing .hero-copy h1 {
  font-size: clamp(2.6rem, 5.6vw, 4.25rem);
  line-height: 1.04;
  margin-bottom: 24px;
}
.landing .hero-copy h1 em {
  font-style: italic;
  color: #0c6b46;
}
.landing .hero-copy .lede {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #5b655e;
  max-width: 52ch;
  margin-bottom: 36px;
}
.landing .hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.landing .hero-actions-center {
  justify-content: center;
}
.landing .hero-note {
  margin-top: 22px;
  font-size: 0.875rem;
  color: #5b655e;
}
.landing .hero-visual {
  position: relative;
  margin: 0;
}
.landing .hero-visual::before {
  content: "";
  position: absolute;
  inset: 14px -10px -10px 14px;
  border: 1px solid #e4dfd3;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.45);
  transform: rotate(1.6deg);
}
.landing .hero-visual figcaption {
  margin-top: 18px;
  text-align: center;
  font-size: 0.8125rem;
  color: #5b655e;
}
.landing .verify-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e4dfd3;
  border-radius: 20px;
  padding: 20px 22px 18px;
  box-shadow: 0 28px 56px -28px rgba(23, 28, 24, 0.25), 0 2px 6px rgba(23, 28, 24, 0.05);
  overflow: hidden;
}
.landing .verify-scan {
  position: absolute;
  left: 10px;
  right: 10px;
  top: 72px;
  height: 52px;
  border-radius: 4px;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(to bottom, transparent, rgba(12, 107, 70, 0.1) 40%, rgba(12, 107, 70, 0.1) 60%, transparent);
  border-bottom: 2px solid rgba(12, 107, 70, 0.5);
}
.landing .verify-card[data-phase=scan] .verify-scan {
  opacity: 1;
  animation: scan-sweep 1.35s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes scan-sweep {
  from {
    top: 72px;
  }
  to {
    top: calc(100% - 76px);
  }
}
.landing .vc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid #e4dfd3;
}
.landing .vc-bank {
  display: flex;
  align-items: center;
  gap: 10px;
}
.landing .vc-bank .vc-bank-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: #0c6b46;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.landing .vc-bank .vc-bank-text {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}
.landing .vc-bank .vc-bank-text strong {
  font-size: 0.875rem;
  font-weight: 600;
  color: #171c18;
}
.landing .vc-bank .vc-bank-text small {
  font-size: 0.75rem;
  color: #5b655e;
}
.landing .vc-time {
  font-size: 0.8125rem;
  color: #5b655e;
  font-variant-numeric: tabular-nums;
}
.landing .vc-fields {
  padding: 4px 0 2px;
}
.landing .vc-fields .vf-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 11px 2px;
  border-bottom: 1px dashed #e4dfd3;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1), transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.landing .vc-fields .vf-row:last-child {
  border-bottom: none;
}
.landing .vc-fields .vf-row dt {
  font-size: 0.8125rem;
  color: #5b655e;
}
.landing .vc-fields .vf-row dd {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #171c18;
  font-variant-numeric: tabular-nums;
}
.landing .vc-fields .vf-row--amount dd {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #084c33;
}
.landing .verify-card[data-phase=fields] .vf-row,
.landing .verify-card[data-phase=stamp] .vf-row,
.landing .verify-card[data-phase=done] .vf-row {
  opacity: 1;
  transform: none;
}
.landing .verify-card[data-phase=fields] .vf-row:nth-child(1),
.landing .verify-card[data-phase=done] .vf-row:nth-child(1) {
  transition-delay: 0.05s;
}
.landing .verify-card[data-phase=fields] .vf-row:nth-child(2),
.landing .verify-card[data-phase=done] .vf-row:nth-child(2) {
  transition-delay: 0.2s;
}
.landing .verify-card[data-phase=fields] .vf-row:nth-child(3),
.landing .verify-card[data-phase=done] .vf-row:nth-child(3) {
  transition-delay: 0.35s;
}
.landing .verify-card[data-phase=fields] .vf-row:nth-child(4),
.landing .verify-card[data-phase=done] .vf-row:nth-child(4) {
  transition-delay: 0.5s;
}
.landing .vc-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid #e4dfd3;
  margin-top: 6px;
}
.landing .vc-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: #5b655e;
}
.landing .vc-status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d1d5db;
  flex-shrink: 0;
  transition: background 0.3s ease;
}
.landing .verify-card[data-phase=scan] .vc-status::before,
.landing .verify-card[data-phase=fields] .vc-status::before {
  background: #e9a13b;
  animation: status-pulse 1s ease-in-out infinite;
}
.landing .verify-card[data-phase=stamp] .vc-status::before,
.landing .verify-card[data-phase=done] .vc-status::before {
  background: #0c6b46;
}
@keyframes status-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}
.landing .verify-stamp {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #e7f0ea;
  color: #084c33;
  border: 1px solid rgba(12, 107, 70, 0.35);
  font-size: 0.875rem;
  font-weight: 700;
  opacity: 0;
  transform: scale(0.7) rotate(-8deg);
  white-space: nowrap;
}
.landing .verify-card[data-phase=stamp] .verify-stamp,
.landing .verify-card[data-phase=done] .verify-stamp {
  animation: stamp-in 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes stamp-in {
  0% {
    opacity: 0;
    transform: scale(1.5) rotate(-14deg);
  }
  55% {
    opacity: 1;
    transform: scale(0.94) rotate(2deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(-3deg);
  }
}
.landing .bank-strip {
  margin-top: clamp(56px, 7vw, 96px);
  border-top: 1px solid #e4dfd3;
  border-bottom: 1px solid #e4dfd3;
  padding: 20px 0;
}
.landing .bank-strip .strip-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5b655e;
  margin-bottom: 16px;
}
.landing .marquee {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 14%, #000 86%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 14%, #000 86%, transparent);
}
.landing .marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 26s linear infinite;
}
.landing .marquee:hover .marquee-track {
  animation-play-state: paused;
}
.landing .marquee-list {
  display: flex;
  align-items: center;
  gap: 52px;
  padding-right: 52px;
  list-style: none;
  margin: 0;
}
.landing .marquee-list li {
  display: flex;
  align-items: center;
  gap: 52px;
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(23, 28, 24, 0.5);
  white-space: nowrap;
}
.landing .marquee-list li::after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #e9a13b;
}
@keyframes marquee-scroll {
  to {
    transform: translateX(-50%);
  }
}
.landing .how .section-head {
  margin-bottom: 56px;
}
.landing .steps {
  list-style: none;
  display: grid;
  gap: 48px;
}
@media (min-width: 900px) {
  .landing .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}
.landing .step {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.landing .step-media {
  background: #ffffff;
  border: 1px solid #e4dfd3;
  border-radius: 20px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (min-width: 900px) {
  .landing .step-media {
    height: 380px;
  }
}
.landing .step-media img {
  height: 88%;
  width: auto;
  max-width: 88%;
  object-fit: contain;
  display: block;
  border-radius: 18px;
}
.landing .step:hover .step-media {
  transform: translateY(-4px);
  box-shadow: 0 24px 44px -24px rgba(23, 28, 24, 0.22);
}
.landing .step-body .step-num {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0c6b46;
  padding-top: 10px;
  border-top: 2px solid #171c18;
  margin-bottom: 12px;
}
.landing .step-body h3 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: 1.375rem;
  font-weight: 600;
  color: #171c18;
  margin-bottom: 8px;
}
.landing .step-body p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #5b655e;
}
.landing .plans-section {
  background: #ffffff;
  border-top: 1px solid #e4dfd3;
  border-bottom: 1px solid #e4dfd3;
}
.landing .plans-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 48px;
  border: 1px solid #e4dfd3;
  border-radius: 12px;
  background: #ffffff;
}
.landing .plans-table-wrap::-webkit-scrollbar {
  height: 6px;
}
.landing .plans-table-wrap::-webkit-scrollbar-track {
  background: transparent;
}
.landing .plans-table-wrap::-webkit-scrollbar-thumb {
  background: #e4dfd3;
  border-radius: 3px;
}
.landing .plans-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  font-size: 0.9375rem;
}
.landing .plans-table th, .landing .plans-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid #e4dfd3;
}
.landing .plans-table thead th {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-size: 0.9375rem;
  color: #171c18;
  background: #f7f4ee;
  position: sticky;
  top: 0;
}
.landing .plans-table thead th:not(:first-child) {
  text-align: center;
}
.landing .plans-table tbody tr:last-child td {
  border-bottom: none;
}
.landing .plans-table tbody tr:nth-child(even) {
  background: rgba(247, 244, 238, 0.5);
}
.landing .plans-table td {
  color: #2a332c;
  line-height: 1.5;
}
.landing .plans-table td:not(:first-child) {
  text-align: center;
}
.landing .plans-table .plan-feature {
  font-weight: 500;
  color: #171c18;
  white-space: nowrap;
}
.landing .plans-table .check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: #e7f0ea;
  color: #0c6b46;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
}
.landing .plans-table .dash {
  color: #d1d5db;
  font-size: 1.125rem;
}
.landing .plans-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 900px) {
  .landing .plans-cards {
    display: none;
  }
}
.landing .plan-card {
  background: #ffffff;
  border: 1px solid #e4dfd3;
  border-radius: 12px;
  padding: 32px 28px;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.landing .plan-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px -12px rgba(23, 28, 24, 0.12);
}
.landing .plan-card--popular {
  border-color: #0c6b46;
  border-width: 2px;
  position: relative;
}
.landing .plan-card--popular::before {
  content: "Most Popular";
  position: absolute;
  top: -12px;
  left: 24px;
  background: #0c6b46;
  color: #ffffff;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
}
.landing .plan-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0c6b46;
  margin-bottom: 12px;
}
.landing .plan-price {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 700;
  color: #171c18;
  line-height: 1.2;
  margin-bottom: 8px;
}
.landing .plan-price span {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  color: #5b655e;
}
.landing .plan-desc {
  font-size: 0.9375rem;
  color: #5b655e;
  line-height: 1.6;
  margin-bottom: 24px;
}
.landing .plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.landing .plan-features li {
  font-size: 0.875rem;
  line-height: 1.55;
  color: #2a332c;
  padding-left: 20px;
  position: relative;
}
.landing .plan-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0c6b46;
  font-weight: 700;
  font-size: 0.75rem;
}
.landing .features-section {
  border-top: 1px solid #e4dfd3;
}
.landing .features-layout {
  display: grid;
  gap: 48px;
}
@media (min-width: 1020px) {
  .landing .features-layout {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 80px;
  }
}
@media (min-width: 1020px) {
  .landing .features-head {
    position: sticky;
    top: 104px;
    align-self: start;
  }
}
.landing .feature-list {
  list-style: none;
  border-top: 1px solid #e4dfd3;
}
.landing .feature-row {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 20px;
  padding: 26px 10px;
  border-bottom: 1px solid #e4dfd3;
  transition: background 0.25s ease, padding-left 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.landing .feature-row:hover {
  background: rgba(255, 255, 255, 0.6);
  padding-left: 18px;
}
.landing .feature-row .fr-num {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #5b655e;
  padding-top: 12px;
}
.landing .feature-row .fr-main {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.landing .feature-row .fr-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border: 1px solid #e4dfd3;
  border-radius: 12px;
  background: #ffffff;
  color: #0c6b46;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.landing .feature-row:hover .fr-icon {
  transform: rotate(-5deg) scale(1.06);
}
.landing .feature-row h3 {
  font-size: 1.0625rem;
  font-weight: 650;
  color: #171c18;
  margin-bottom: 5px;
}
.landing .feature-row p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #5b655e;
  max-width: 54ch;
}
.landing .band {
  background: #0a3a26;
  color: rgba(243, 239, 230, 0.75);
}
.landing .band h2 {
  color: #fbf8f1;
}
.landing .band p {
  font-size: 1.0625rem;
  line-height: 1.7;
  max-width: 50ch;
}
.landing .band-inner {
  display: grid;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1020px) {
  .landing .band-inner {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}
.landing .band-copy p {
  margin-top: 4px;
}
.landing .ledger-card {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  overflow: hidden;
}
.landing .ledger-card .lc-head {
  display: flex;
  justify-content: space-between;
  padding: 15px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.landing .ledger-card .lc-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 17px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.landing .ledger-card .lc-row:last-child {
  border-bottom: none;
}
.landing .ledger-card .lc-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.landing .ledger-card .lc-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  line-height: 1.4;
  min-width: 0;
}
.landing .ledger-card .lc-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #ffffff;
}
.landing .ledger-card .lc-sub {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}
.landing .ledger-card .lc-amount {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.landing .ledger-card .lc-chip {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.landing .ledger-card .chip-warn {
  background: rgba(233, 161, 59, 0.15);
  color: #f2be6a;
  border: 1px solid rgba(233, 161, 59, 0.35);
}
.landing .ledger-card .chip-open {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.landing .ledger-card .chip-paid {
  background: rgba(52, 199, 123, 0.14);
  color: #7ce0a8;
  border: 1px solid rgba(52, 199, 123, 0.3);
}
.landing .cta {
  text-align: center;
}
.landing .cta h2 {
  font-size: clamp(2.2rem, 4.8vw, 3.6rem);
  max-width: 20ch;
  margin: 0 auto 36px;
}
.landing .reveal-armed {
  opacity: 0;
  transform: translateY(22px);
}
.landing .reveal-armed.is-visible {
  opacity: 1;
  transform: none;
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .landing .marquee-track {
    animation: none;
  }
  .landing .verify-scan {
    display: none;
  }
  .landing .reveal-armed {
    opacity: 1;
    transform: none;
  }
  .landing .reveal-armed.is-visible {
    transition: none;
  }
  .landing .verify-stamp {
    transition: none;
  }
}
