/* ========== Base / mobile-first ========== */
:root{
  --max: 64rem;
  --pad: 1rem;
  --radius: 14px;

  /* Neutrals */
  --bg: #ffffff;
  --surface: #ffffff;
  --border: #e6e8ee;

  /* “Night sky” ink */
  --ink: #0b1020;         /* main text */
  --ink-2: #1e1b4b;       /* indigo anchor (nav/brand/headings) */
  --muted: #5b6475;

  /* Aurora accents */
  --accent: #0ea5a4;      /* aurora teal */
  --accent-ink: #ffffff;
  --mint: #a7f3d0;        /* earned accent (use low opacity only) */

  /* FX */
  --ring: rgba(14,165,164,.28);
  --glow: rgba(14,165,164,.16);
  --glow2: rgba(167,243,208,.10);
}

*{ box-sizing: border-box; }
html, body{ margin:0; padding:0; }
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-text-size-adjust: 100%;
}

/* Links: subtle by default, aurora on hover */
a{ color: var(--accent); text-underline-offset: 3px; }
a:hover{ text-decoration-thickness: 2px; }


.container{
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ===== Header / Nav (mobile first) ===== */
.site-header{
  border-bottom: 1px solid var(--border);
background:
  radial-gradient(900px 220px at 20% -40%, var(--glow2), transparent 60%),
  radial-gradient(900px 260px at 80% -50%, var(--glow), transparent 65%),
  var(--surface);
}

.site-header .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .75rem var(--pad);
}
/* Header gets a soft aurora “sky” glow */
.site-header{
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(900px 220px at 20% -40%, var(--glow2), transparent 60%),
    radial-gradient(900px 260px at 80% -50%, var(--glow), transparent 65%),
    var(--surface);
}
/* ===== Header layout  ===== */
.site-header .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding-top: .75rem;
  padding-bottom: .75rem;
}
h1, h2, h3 {
  color: var(--ink-2);
}
.site-nav{
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;          /* wraps nicely on small screens */
  justify-content: flex-end;
  align-items: center;
}
.site-nav a{
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease, background .12s ease;
  will-change: transform;
}
/* Brand + nav use indigo anchor */
.brand{
  font-weight: 700;
  text-decoration: none;
  color: var(--ink-2);
  white-space: nowrap;
}

.site-nav a{
  font-size: .95rem;
  color: var(--ink-2);
  text-decoration: none;
  padding: .5rem .6rem;
  border-radius: 10px;
  border: 1px solid transparent;
}

/* Hover: tiny lift + faint glow, no big blocks */
.site-nav a:hover{
  border-color: rgba(14,165,164,.18);
  box-shadow: 0 6px 18px rgba(14,165,164,.10);
  transform: translateY(-1px);
}

/* Focus ring: aurora */
.site-nav a:focus{
  outline: 3px solid var(--ring);
  outline-offset: 2px;
}

/* CTA: still a pill, but not shouting */
.nav-cta{
  background: rgba(14,165,164,.10);
  border: 1px solid rgba(14,165,164,.22);
  color: var(--ink-2) !important;
}
.nav-cta:hover{
  background: rgba(14,165,164,.14);
  box-shadow: 0 8px 24px rgba(14,165,164,.16);
}
/* Active page: subtle highlight */
.nav-active{
  font-weight: 600;
}
.nav-active{
  border-color: rgba(14,165,164,.28) !important;
  background: rgba(14,165,164,.08);
}
/* ===== Hero ===== */
.hero{
  padding: 1.75rem 0 1.25rem;
}
.hero h1{
  font-size: 1.6rem;          /* phone-friendly */
  line-height: 1.2;
  margin: 0 0 .75rem;
  letter-spacing: -0.02em;
}
.hero p{
  color: var(--muted);
  margin: 0 0 1rem;
  max-width: 38rem;           /* comfortable reading width */
}

.hero-actions{
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}

.note{
  margin-top: 1rem;
  color: var(--muted);
  font-size: .95rem;
}
/* ===== Buttons (44px tap target) ===== */
.button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;           /* iOS/Android friendly */
  padding: .65rem 1rem;
  border-radius: var(--radius);
  background: var(--accent);
  color: var(--accent-ink);
  text-decoration: none;
  font-weight: 600;
}

.button-secondary{
  background: transparent;
  color: var(--accent);
  border: 1px solid rgba(15,118,110,.35);
}

/* ===== Footer ===== */
.site-footer{
  border-top: 1px solid var(--border);
  margin-top: 2rem;
  padding: 1.25rem 0;
  color: var(--muted);
  font-size: .95rem;
}

/* ========== Desktop enhancement (secondary) ========== */
@media (min-width: 48rem){
  :root{ --pad: 1.25rem; }
  .hero{ padding: 3rem 0 2rem; }
  .hero h1{ font-size: 2.25rem; }
  .site-nav a{ padding: .55rem .75rem; }
}

/* ===== Contact page ===== */
.page{
  padding: 1.75rem 0;
}

.narrow{
  max-width: 36rem; /* very phone-friendly */
}

.lead{
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.contact-form{
  display: grid;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.contact-form label{
  display: flex;
  flex-direction: column;
  gap: .35rem;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea{
  font: inherit;
  padding: .6rem .65rem;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.contact-form input:focus,
.contact-form textarea:focus{
  outline: 3px solid rgba(15,118,110,.25);
  border-color: var(--accent);
}

.hint{
  font-size: .85rem;
  color: var(--muted);
}
.faq-answer {
  display: none;
}
.faq-answer.open {
  display: block;
}
.faq-question {
  cursor: pointer;
}
/*=====Price page ===== */
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.25rem;
}

.pricing-table th {
  text-align: left;
  font-weight: 600;
  color: var(--ink-2);
  padding: .5rem 0;
  border-bottom: 1px solid var(--border);
}

.pricing-table td {
  padding: .55rem 0;
  color: var(--ink);
}

.pricing-table tr + tr td {
  border-top: 1px solid rgba(0,0,0,.04);
}

.pricing-table td:nth-child(2) {
  font-weight: 600;
  white-space: nowrap;
}

.pricing-notes {
  background: rgba(14,165,164,.06); /* soft aurora tint */
  border-radius: 12px;
  padding: 1rem;
  font-size: .95rem;
}

.pricing-notes p {
  margin: 0 0 .5rem;
  color: var(--ink-2);
}

.pricing-notes ul {
  margin: 0 0 .75rem;
  padding-left: 1.1rem;
}

.fine-note {
  font-size: .85rem;
  color: var(--muted);
}

/* ===== Paw mark styles ===== */

.paw-mark.paw-ink{
  color: rgba(30,27,75,.35); /* soft indigo option */
}

.paw-mark.paw-strong{
  color: var(--accent);      /* stronger teal option */
}
.with-mark{
  display: flex;
  align-items: center;
  gap: .55rem;
}
.paw-mark{
  width: 18px;
  height: 18px;
  color: rgba(14,165,164,.45);
  display: inline-block;
  flex: 0 0 auto;
}

.faq-marker{
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: .75rem;
  color: var(--muted);
  font-size: .95rem;
}

/* Pricing layout: keep it calm and centered */
.pricing-card{
  max-width: 860px;
  margin: 0 auto;
}

/* Table: stable columns */
.pricing-table{
  table-layout: fixed;
}

.pricing-table th:nth-child(1),
.pricing-table td:nth-child(1){
  width: 32%;
}

.pricing-table th:nth-child(2),
.pricing-table td:nth-child(2){
  width: 16%;
  text-align: left;
  padding-right: .5rem;
  white-space: nowrap;
}

.pricing-table th:nth-child(3),
.pricing-table td:nth-child(3){
  width: 52%;
}

/* Prevent long notes from exploding the layout */
.pricing-table tbody tr:hover{
  background: rgba(14,165,164,.04);
}