/* DaKine Directory — brand palette
   Ocean Teal #0F766E · Deep Teal #115E59 · Sunset Coral #F9735B
   Sky Blue #38BDF8 · Soft Cream #FFFBF5
   Decorative gradient: #E0F2FE → #FFF7ED → #ECFDF5
*/

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  background: #FFFBF7;
  color: #1F2937;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

/* Decorative background blobs (matches app) */
body::before,
body::after,
.blob-3 {
  content: "";
  position: fixed;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

body::before {
  width: 170px;
  height: 170px;
  top: 120px;
  right: -72px;
  background: rgba(56, 189, 248, 0.10);
}

body::after {
  width: 190px;
  height: 190px;
  top: 390px;
  left: -90px;
  background: rgba(249, 115, 91, 0.08);
}

.blob-3 {
  width: 210px;
  height: 210px;
  bottom: 130px;
  right: -86px;
  background: rgba(15, 118, 110, 0.08);
}

/* Keep page content above the blobs */
.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

/* Header */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 8%;
  background: #FFFFFF;
  border-bottom: 1px solid #E5E7EB;
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: contain;
}

.brand .logo {
  font-size: 22px;
  font-weight: 800;
  color: #0F766E;
  letter-spacing: 0.2px;
}

.nav-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.nav-links a {
  color: #374151;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
}

.nav-links a:hover {
  color: #0F766E;
}

/* Active page indicator — bold + teal for the current page's nav link */
.nav-links a[aria-current="page"] {
  color: #0F766E;
  font-weight: 800;
}

/* Hamburger menu button (mobile only — hidden on desktop) */
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 8px;
  transition: background 0.15s ease;
}

.nav-toggle:hover {
  background: #F3F4F6;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #115E59;
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero — uses the decorative gradient as the section backdrop */
.hero {
  padding: 60px 8% 40px;
  background: linear-gradient(135deg, #E0F2FE 0%, #FFF7ED 50%, #ECFDF5 100%);
  text-align: center;
}

.hero-card {
  max-width: 760px;
  margin: 0 auto;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 28px;
  padding: 40px 36px;
  box-shadow: 0 18px 40px rgba(15, 118, 110, 0.10);
}

.hero-logo {
  width: 100%;
  max-width: 240px;
  height: auto;
  border-radius: 20px;
  margin: 0 auto 18px;
  display: block;
  box-shadow: 0 8px 24px rgba(15, 118, 110, 0.18);
}

.hero h1 {
  font-size: 38px;
  line-height: 1.15;
  margin-bottom: 10px;
  color: #1F2937;
}

.hero .tagline {
  color: #F9735B;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

.hero-text {
  font-size: 17px;
  color: #4B5563;
  max-width: 560px;
  margin: 0 auto 22px;
}

/* Category chips */
.chips {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.chip-blue {
  background: #E0F2FE;
  color: #0369A1;
  border: 1px solid #BAE6FD;
}

.chip-coral {
  background: #FFE4DE;
  color: #C2410C;
  border: 1px solid #FECACA;
}

.chip-mint {
  background: #ECFDF5;
  color: #115E59;
  border: 1px solid #BBF7D0;
}

/* Buttons */
.button {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 16px;
  transition: 0.2s ease;
}

.button.full {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 14px;
}

.primary-button {
  background: #0F766E;
  color: #FFFFFF;
  box-shadow: 0 8px 18px rgba(15, 118, 110, 0.28);
}

.primary-button:hover {
  background: #115E59;
}

.secondary-button {
  background: #FFFFFF;
  color: #0F766E;
  border: 1px solid #E5E7EB;
}

.secondary-button:hover {
  background: #F8FAFC;
}

/* Two-up action cards (Owner Access / Suggest) */
.action-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 560px;
  margin: 0 auto;
}

.action-card {
  display: block;
  padding: 22px 18px;
  border-radius: 18px;
  text-decoration: none;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  transition: 0.2s ease;
}

.action-card .icon {
  font-size: 22px;
  display: block;
  margin-bottom: 6px;
}

.action-card.mint {
  background: #ECFDF5;
  color: #115E59;
  border: 1px solid #BBF7D0;
}

.action-card.mint:hover {
  background: #D1FAE5;
}

.action-card.coral {
  background: #FFE4DE;
  color: #C2410C;
  border: 1px solid #FECACA;
}

.action-card.coral:hover {
  background: #FED7CC;
}

/* Generic section */
.section {
  padding: 60px 8%;
  text-align: center;
}

.section h2 {
  font-size: 32px;
  margin-bottom: 28px;
  color: #0F766E;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}

.card {
  background: #FFFFFF;
  padding: 26px;
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(31, 41, 55, 0.06);
  border: 1px solid #E5E7EB;
  text-align: left;
}

.card h3 {
  color: #F9735B;
  margin-bottom: 10px;
  font-size: 20px;
}

.card p {
  color: #4B5563;
  margin-bottom: 8px;
  font-size: 15px;
}

/* Gradient feature card — Ocean Teal → Sky Blue (matches app's directory card) */
.feature-card {
  max-width: 760px;
  margin: 20px auto 60px;
  padding: 38px 32px;
  text-align: center;
  background: linear-gradient(135deg, #0F766E 0%, #38BDF8 100%);
  color: #FFFFFF;
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(15, 118, 110, 0.25);
}

.feature-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.feature-card p {
  margin-bottom: 18px;
  opacity: 0.95;
}

.feature-card .button {
  background: #FFFFFF;
  color: #0F766E;
}

.feature-card .button:hover {
  background: #ECFDF5;
}

/* "Coming Soon" non-clickable variants of buttons and action cards */
.button.coming-soon,
.action-card.coming-soon {
  cursor: default;
  opacity: 0.78;
  pointer-events: none;
}

/* App Store + Google Play badge-style buttons */
.store-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 6px 0 4px;
}

.store-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #000000;
  color: #FFFFFF;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 10px;
  border: 1px solid #000000;
  min-width: 168px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.store-button:hover {
  background: #1F2937;
  transform: translateY(-2px);
  color: #FFFFFF;
}

.store-button svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
  flex-shrink: 0;
}

.store-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-align: left;
}

.store-text small {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0.85;
  margin-bottom: 2px;
  font-weight: 600;
}

.store-text strong {
  font-size: 16px;
  font-weight: 700;
}

/* QR / Open Directory card */
.qr-card {
  max-width: 860px;
  margin: 20px auto 60px;
  padding: 40px 40px;
  background: linear-gradient(135deg, #0F766E 0%, #38BDF8 100%);
  color: #FFFFFF;
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(15, 118, 110, 0.25);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  text-align: left;
}

.qr-card h3 {
  font-size: 26px;
  margin-bottom: 10px;
}

.qr-text p {
  margin-bottom: 20px;
  opacity: 0.95;
  font-size: 16px;
  max-width: 360px;
}

.qr-card .button {
  background: #FFFFFF;
  color: #0F766E;
}

.qr-card .button:hover {
  background: #ECFDF5;
}

.qr-image {
  background: #FFFFFF;
  padding: 14px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.qr-image img {
  display: block;
  width: 180px;
  height: 180px;
}

.qr-caption {
  color: #115E59;
  font-size: 13px;
  font-weight: 700;
  margin-top: 10px;
}

@media (max-width: 700px) {
  .qr-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 32px 24px;
    gap: 28px;
  }

  .qr-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .qr-image {
    justify-self: center;
  }
}

/* Contact form */
.form-card {
  max-width: 640px;
  margin: 0 auto 40px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 22px;
  padding: 36px;
  box-shadow: 0 12px 30px rgba(31, 41, 55, 0.06);
  text-align: left;
}

.form-row {
  margin-bottom: 18px;
}

.form-row label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #374151;
  margin-bottom: 6px;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
  color: #1F2937;
  background: #FFFFFF;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: #0F766E;
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.15);
}

.form-row textarea {
  min-height: 130px;
  resize: vertical;
}

.form-row .help {
  font-size: 13px;
  color: #6B7280;
  margin-top: 6px;
}

/* Radio group (used on the waitlist form) */
.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.radio-option {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid #E5E7EB;
  border-radius: 999px;
  cursor: pointer;
  transition: 0.15s ease;
  font-size: 15px;
  color: #374151;
  font-weight: 600;
  background: #FFFFFF;
}

.radio-option:hover {
  border-color: #0F766E;
  color: #0F766E;
}

.radio-option input[type="radio"] {
  width: auto;
  margin: 0;
  accent-color: #0F766E;
}

.radio-option:has(input[type="radio"]:checked) {
  border-color: #0F766E;
  background: #ECFDF5;
  color: #115E59;
}

.required {
  color: #F9735B;
  font-weight: 800;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Social row */
.social-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 10px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #1F2937;
  color: #FFFFFF;
  border-radius: 50%;
  text-decoration: none;
  transition: 0.2s ease;
}

.social-icon:hover {
  background: #0F766E;
  transform: translateY(-2px);
}

.social-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* Card grid column variants */
.cards.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cards.cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 850px) {
  .cards.cols-2,
  .cards.cols-4 { grid-template-columns: 1fr; }
}

/* Pricing cards */
.pricing-card {
  background: #FFFFFF;
  padding: 32px 26px;
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(31, 41, 55, 0.06);
  border: 1px solid #E5E7EB;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border: 2px solid #F9735B;
  box-shadow: 0 16px 40px rgba(249, 115, 91, 0.20);
}

.pricing-card.featured::before {
  content: "Most Visibility";
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: #F9735B;
  color: #FFFFFF;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-card .plan-name {
  color: #0F766E;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.pricing-card .plan-price {
  font-size: 34px;
  font-weight: 800;
  color: #1F2937;
  margin-bottom: 4px;
  line-height: 1.1;
}

.pricing-card .plan-price small {
  font-size: 15px;
  font-weight: 600;
  color: #6B7280;
}

.pricing-card .plan-best {
  display: inline-block;
  align-self: center;
  background: #FFF1ED;
  color: #F9735B;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.pricing-card .plan-features {
  text-align: left;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-card .plan-features li {
  padding: 10px 0;
  border-bottom: 1px solid #F3F4F6;
  font-size: 14.5px;
  color: #374151;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.pricing-card .plan-features li::before {
  content: "✓";
  color: #0F766E;
  font-weight: 800;
  flex-shrink: 0;
}

.pricing-card .plan-features li:last-child { border-bottom: none; }

/* Comparison table */
.compare-wrap {
  max-width: 1000px;
  margin: 0 auto 30px;
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  min-width: 640px;
  border-collapse: separate;
  border-spacing: 0;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(31, 41, 55, 0.06);
}

.compare-table th,
.compare-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #E5E7EB;
  font-size: 14.5px;
  vertical-align: top;
  text-align: center;
}

.compare-table thead th {
  background: #0F766E;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 800;
}

.compare-table thead th:first-child {
  text-align: left;
  background: #115E59;
}

.compare-table thead th .price {
  display: block;
  font-weight: 800;
  font-size: 17px;
  margin-top: 4px;
  opacity: 0.95;
}

.compare-table tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: #1F2937;
  background: #FFFBF7;
  width: 38%;
}

/* Swipe hint shown above the comparison table on mobile only */
.compare-hint {
  display: none;
}

.compare-table tbody td { color: #4B5563; }
.compare-table .yes { color: #0F766E; font-weight: 800; }
.compare-table .no { color: #9CA3AF; }
.compare-table tr:last-child td { border-bottom: none; }

/* FAQ items */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 12px;
  box-shadow: 0 8px 20px rgba(31, 41, 55, 0.04);
}

.faq-item h3 {
  color: #0F766E;
  font-size: 17px;
  margin-bottom: 6px;
}

.faq-item p {
  color: #4B5563;
  font-size: 15px;
  margin: 0;
}

/* Long-form legal / policy content */
.policy {
  max-width: 780px;
  margin: 0 auto 60px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 22px;
  padding: 48px 44px;
  box-shadow: 0 12px 30px rgba(31, 41, 55, 0.06);
  text-align: left;
  color: #374151;
  font-size: 15px;
  line-height: 1.75;
}

.policy .updated {
  color: #6B7280;
  font-size: 14px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid #E5E7EB;
}

.policy h2 {
  color: #0F766E;
  font-size: 24px;
  margin: 36px 0 12px;
  text-align: left;
}

.policy h2:first-of-type {
  margin-top: 0;
}

.policy h3 {
  color: #115E59;
  font-size: 18px;
  margin: 26px 0 10px;
}

.policy h4 {
  color: #1F2937;
  font-size: 16px;
  margin: 20px 0 8px;
  font-weight: 700;
}

.policy p {
  margin-bottom: 14px;
}

.policy ul {
  margin: 8px 0 18px 22px;
  padding: 0;
}

.policy li {
  margin-bottom: 6px;
}

.policy strong {
  color: #1F2937;
}

.policy a {
  color: #0F766E;
  text-decoration: underline;
}

.policy a:hover {
  color: #115E59;
}

@media (max-width: 850px) {
  .policy {
    padding: 32px 22px;
  }

  .policy h2 {
    font-size: 20px;
  }
}

/* Footer */
.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 8%;
  background: #115E59;
  color: #FFFFFF;
  flex-wrap: wrap;
}

.site-footer a {
  color: #FECACA;
  text-decoration: none;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* Footer social icons */
.footer-social {
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  border-radius: 50%;
  text-decoration: none;
  transition: 0.2s ease;
}

.footer-social a:hover {
  background: #FFFFFF;
  color: #115E59;
  transform: translateY(-2px);
}

.footer-social svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.site-footer a:hover {
  text-decoration: underline;
  color: #FFE4DE;
}

/* Responsive */
@media (max-width: 850px) {
  /* Header — centered brand stacked above centered nav links */
  .site-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    padding: 16px 5%;
  }

  .brand {
    justify-content: center;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

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

  /* Hide the hamburger button (kept in place in case you want it later) */
  .nav-toggle {
    display: none !important;
  }

  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 20px;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    width: 100%;
  }

  .nav-links a {
    padding: 4px 0;
    font-size: 15px;
    border: none;
  }

  /* Tighter hero, sections, cards */
  .hero {
    padding: 30px 5% 24px;
  }

  .hero-card {
    padding: 28px 20px;
    border-radius: 22px;
  }

  .hero h1 {
    font-size: 26px;
  }

  .hero .tagline {
    font-size: 16px;
  }

  .hero-text {
    font-size: 15px;
  }

  .hero-logo {
    max-width: 180px;
    border-radius: 16px;
  }

  .section {
    padding: 40px 5%;
  }

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

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

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

  .feature-card {
    padding: 28px 22px;
    margin: 16px 5% 40px;
    border-radius: 20px;
  }

  .feature-card h3 {
    font-size: 20px;
  }

  /* Form card on mobile */
  .form-card {
    padding: 26px 20px;
    margin-left: 5%;
    margin-right: 5%;
  }

  /* Footer */
  .site-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 22px 5%;
    font-size: 14px;
  }

  /* Pricing comparison table — make it phone-friendly */
  .compare-hint {
    display: block;
    text-align: center;
    font-size: 13.5px;
    font-weight: 700;
    color: #0F766E;
    margin-bottom: 14px;
    letter-spacing: 0.02em;
  }

  /* Sticky first column so the feature name stays visible while swiping */
  .compare-table thead th:first-child,
  .compare-table tbody td:first-child {
    position: sticky;
    left: 0;
    z-index: 2;
    box-shadow: 4px 0 6px -3px rgba(31, 41, 55, 0.15);
  }

  .compare-table thead th:first-child {
    background: #115E59;
  }

  .compare-table tbody td:first-child {
    background: #FFFBF7;
  }
}
