/* fishfly.app — recreated from docs/handoff/FishFly Website.dc.html (high-fidelity).
   Exact values from the handoff spec; brand tokens in tokens.css. */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg-app);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}
a { color: #1E4D3B; }
a:hover { color: #17402F; }
input::placeholder, textarea::placeholder { color: #A2A79D; }
input:focus, textarea:focus { outline: none; border-color: #1E4D3B !important; }
button { font-family: inherit; }
img { max-width: 100%; }
[hidden] { display: none !important; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding-left: clamp(20px, 4vw, 40px);
  padding-right: clamp(20px, 4vw, 40px);
}
.section { padding-top: clamp(64px, 8vw, 104px); padding-bottom: clamp(64px, 8vw, 104px); }
.bg-app { background: #F7F5F0; }
.bg-screen { background: #F2F0E9; }
.hairlines { border-top: 1px solid #E5E1D4; border-bottom: 1px solid #E5E1D4; }

/* Honeypot — off-screen, never display:none (some bots skip hidden fields) */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

/* ——— Type ——— */
.eyebrow {
  margin: 0;
  font-size: 12.5px; font-weight: 800; letter-spacing: 0.13em;
  text-transform: uppercase; color: #BE5D20;
}
.eyebrow-wide { letter-spacing: 0.15em; }
.eyebrow.on-green { color: #D98E52; }
h1 {
  margin: 18px 0 0;
  font-size: clamp(42px, 4.8vw, 62px); line-height: 1.05; font-weight: 800;
  letter-spacing: -1.5px; color: #F5F3EA; text-wrap: pretty;
}
h2 {
  margin: 12px 0 0;
  font-size: clamp(30px, 3.2vw, 38px); font-weight: 800;
  letter-spacing: -0.6px; color: #17251E; text-wrap: pretty;
}
.h2-max { max-width: 640px; }
h2.on-green { color: #F5F3EA; }
.section-sub {
  margin: 12px 0 0;
  font-size: 17px; line-height: 1.55; color: #5A6158; max-width: 560px; text-wrap: pretty;
}
.on-green-sub { color: rgba(245,243,234,0.78); max-width: 540px; }

/* ——— Nav ——— */
.nav { background: #F7F5F0; border-bottom: 1px solid #E5E1D4; }
.nav-row { height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.brand-word { font-size: 22px; font-weight: 800; letter-spacing: -0.5px; color: #17251E; }
.nav-links { display: flex; align-items: center; gap: clamp(14px, 2.4vw, 28px); flex-wrap: wrap; justify-content: flex-end; }
.nav-links > a { font-size: 15px; font-weight: 600; color: #3D453E; text-decoration: none; }
.nav-links > a:hover { color: #3D453E; }
.nav-contact {
  border: none; background: none; padding: 0; margin: 0;
  font-size: 15px; font-weight: 600; color: #3D453E; cursor: pointer;
}
.btn-outline {
  height: 44px; padding: 0 18px; border-radius: 15px;
  border: 1.5px solid #1E4D3B; background: rgba(30,77,59,0.05);
  display: flex; align-items: center;
  font-size: 15px; font-weight: 700; color: #1E4D3B !important; text-decoration: none;
  transition: background 0.2s ease;
}
.btn-outline:hover { background: rgba(30,77,59,0.1); }

/* ——— Hero ——— */
.hero {
  background: linear-gradient(175deg, #235743 0%, #1E4D3B 45%, #163B2D 100%);
  position: relative; overflow: hidden;
}
.hero-contours, .footer-contours, .waters-contours {
  position: absolute; bottom: 0; left: 0; pointer-events: none;
}
.hero-row {
  padding-top: clamp(56px, 7vw, 96px); padding-bottom: clamp(64px, 7vw, 100px);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: clamp(40px, 6vw, 88px); position: relative;
}
.hero-copy { flex: 1 1 460px; max-width: 580px; animation: ffScreenIn 0.35s ease; }
.hero-sub {
  margin: 22px 0 0;
  font-size: 18px; line-height: 1.55; color: rgba(245,243,234,0.78);
  max-width: 500px; text-wrap: pretty;
}
.pill-soon {
  margin-top: 30px; display: inline-flex; align-items: center; gap: 9px;
  height: 38px; padding: 0 16px; border-radius: 999px;
  background: rgba(245,243,234,0.13); border: 1px solid rgba(245,243,234,0.16);
}
.pill-soon span { font-size: 13px; font-weight: 700; color: #EDEAE0; }
.notify { margin: 16px 0 0; display: flex; flex-wrap: wrap; gap: 10px; max-width: 480px; }
.notify input[type="email"] {
  flex: 1 1 220px; height: 56px; border-radius: 15px;
  border: 1.5px solid transparent; background: #FFFFFF;
  padding: 0 16px; font-size: 17px; color: #17251E; font-family: inherit;
}
.btn-copper {
  border: none; height: 56px; padding: 0 26px; border-radius: 16px;
  background: #BE5D20; color: #FFF7EF;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; font-weight: 800; letter-spacing: -0.2px; cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  transition: background 0.2s ease; text-decoration: none;
}
.btn-copper:hover { background: #A94F17; color: #FFF7EF; }
.notify-success {
  margin-top: 16px; max-width: 480px;
  background: rgba(245,243,234,0.13); border: 1px solid rgba(245,243,234,0.16);
  border-radius: 14px; padding: 12px 15px;
  display: flex; gap: 11px; align-items: center; animation: ffPop 0.4s ease;
}
.notify-success svg { flex-shrink: 0; }
.notify-success-title { font-size: 14.5px; font-weight: 800; color: #F5F3EA; }
.notify-success-body { font-size: 13px; color: rgba(245,243,234,0.72); margin-top: 1px; }
.hero-microcopy { margin: 14px 0 0; font-size: 13px; color: rgba(245,243,234,0.6); }
.hero-error, .modal-error { margin: 10px 0 0; font-size: 13px; color: rgba(245,243,234,0.72); }
.modal-error { color: #5A6158; }

/* ——— Phone mock ——— */
.hero-phone { flex: 0 0 auto; }
.phone-frame { width: 322px; height: 700px; }
.phone {
  width: 402px; height: 874px; transform: scale(0.8); transform-origin: top left;
  border-radius: 54px; background: #F2F0E9;
  box-shadow: 0 40px 90px rgba(0,0,0,0.35);
  overflow: hidden; display: flex; flex-direction: column;
}
.phone-header {
  background: linear-gradient(165deg, #235743, #1E4D3B 55%, #17402F);
  padding: 58px 16px 16px;
}
.phone-topbar { display: flex; align-items: center; justify-content: space-between; }
.circle-glass {
  border-radius: 999px; background: rgba(245,243,234,0.12);
  display: flex; align-items: center; justify-content: center;
}
.circle-38 { width: 38px; height: 38px; }
.circle-36 { width: 36px; height: 36px; }
.trip-pill {
  height: 28px; padding: 0 11px; border-radius: 999px;
  background: rgba(245,243,234,0.13); border: 1px solid rgba(245,243,234,0.16);
  display: flex; align-items: center;
  font-size: 12px; font-weight: 700; color: #EDEAE0;
}
.water-name {
  margin-top: 16px;
  font-size: 24px; font-weight: 800; letter-spacing: -0.4px; line-height: 1.18; color: #F5F3EA;
}
.water-meta { margin-top: 3px; font-size: 13px; color: rgba(245,243,234,0.72); }
.cond-chips { margin-top: 12px; display: flex; gap: 7px; flex-wrap: wrap; }
.chip-glass {
  height: 30px; padding: 0 12px; border-radius: 999px;
  background: rgba(245,243,234,0.13); border: 1px solid rgba(245,243,234,0.16);
  display: inline-flex; align-items: center;
  font-size: 13px; font-weight: 600; color: #EDEAE0;
}
.phone-body {
  flex: 1; padding: 14px 16px 0;
  display: flex; flex-direction: column; gap: 10px; min-height: 0;
}

/* ——— PeriodTabs ——— */
.period-tabs {
  display: flex; gap: 4px;
  background: #FFFFFF; border: 1px solid #E5E1D4; border-radius: 16px;
  padding: 4px; box-shadow: 0 1px 3px rgba(23,37,30,0.05);
}
.period-tab {
  flex: 1; height: 52px; border-radius: 12px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px; border: none; padding: 0; background: transparent;
  cursor: pointer; transition: background 0.2s ease;
}
.period-tabs.is-static .period-tab { cursor: default; }
.period-tab .tab-label {
  display: flex; align-items: center; gap: 5px;
  font-size: 14px; font-weight: 800; letter-spacing: -0.1px; color: #3D453E;
}
.period-tab .tab-window { font-size: 10.5px; font-weight: 700; color: #9AA095; }
.period-tab.is-selected { background: #1E4D3B; }
.period-tab.is-selected .tab-label { color: #F7F5F0; }
.period-tab.is-selected .tab-window { color: rgba(245,243,234,0.75); }
.now-dot { width: 6px; height: 6px; border-radius: 999px; background: #D98E52; }

/* ——— RigStrip ——— */
.rig-strip {
  background: #FFFFFF; border-radius: 14px; padding: 11px 14px;
  border: 1px solid #E5E1D4; box-shadow: 0 1px 3px rgba(23,37,30,0.05);
}
.rig-eyebrow {
  font-size: 10.5px; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: #BE5D20;
}
.rig-line { margin-top: 3px; font-size: 13.5px; line-height: 1.45; color: #3D453E; }

/* ——— FlyCard ——— */
.fly-stack { display: flex; flex-direction: column; gap: 10px; }
.fly-card {
  background: #FFFFFF; border: 1px solid #E5E1D4; border-radius: 18px;
  padding: 14px; box-shadow: 0 1px 3px rgba(23,37,30,0.05);
  display: flex; gap: 12px; align-items: center;
}
.fly-photo {
  width: 86px; height: 74px; flex-shrink: 0; border-radius: 13px;
  background: #F2F0E7; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.fly-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fly-info { flex: 1; min-width: 0; }
.fly-meta { display: flex; align-items: center; gap: 7px; flex-wrap: wrap; row-gap: 4px; }
.fly-rank { font-size: 12px; font-weight: 800; color: #BE5D20; }
.badge {
  height: 18px; padding: 0 6px; border-radius: 6px;
  display: inline-flex; align-items: center;
  font-size: 10.5px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
}
.badge-dry { background: #F3E1D0; color: #9A4A16; }
.badge-nymph { background: #DCE7DF; color: #1E4D3B; }
.badge-emerger { background: #E9E9D3; color: #5F6524; }
.badge-streamer { background: #E5E2DA; color: #57534A; }
.spec-chip {
  height: 20px; padding: 0 7px; border-radius: 6px;
  background: #FAF8F2; border: 1px solid #E3DFD3;
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 10.5px; font-weight: 800; color: #57534A;
}
.fly-name {
  margin-top: 4px;
  font-size: 17px; font-weight: 800; letter-spacing: -0.2px; color: #17251E;
}
.fly-name span { color: #7B8279; font-weight: 700; }
.fly-why { margin-top: 3px; font-size: 13.5px; line-height: 1.4; color: #5A6158; }

/* ——— SavedBanner / offline pill ——— */
.saved-banner {
  background: #E7EEE6; border: 1px solid #CBDCCE; border-radius: 14px;
  padding: 11px 14px; display: flex; gap: 11px; align-items: center;
}
.saved-banner svg { flex-shrink: 0; }
.saved-title { font-size: 14.5px; font-weight: 800; color: #1E4D3B; }
.saved-body { font-size: 13px; color: #5A6A5E; }
.offline-pill {
  margin-top: 8px; display: inline-flex; align-self: flex-start;
  align-items: center; gap: 8px;
  height: 32px; padding: 0 13px; border-radius: 999px; background: #2A2E2B;
}
.offline-pill span { font-size: 13px; font-weight: 700; color: #F2F0E9; }
.dead-zone { display: flex; flex-direction: column; gap: 8px; align-items: flex-start; }
.dead-zone .offline-pill { margin-top: 0; }
.saved-line { font-size: 13px; color: #7B8279; }

/* ——— Cards / grids ——— */
.grid-cards {
  margin-top: 40px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 16px;
}
.card {
  background: #FFFFFF; border: 1px solid #E5E1D4; border-radius: 18px;
  padding: 26px; box-shadow: 0 1px 3px rgba(23,37,30,0.05);
}
.step-card { display: flex; flex-direction: column; gap: 8px; }
.step-eyebrow { font-size: 11px; font-weight: 800; letter-spacing: 0.13em; color: #BE5D20; }
.card-title-lg { font-size: 20px; font-weight: 800; letter-spacing: -0.2px; color: #17251E; }
.card-title { font-size: 17px; font-weight: 800; letter-spacing: -0.2px; color: #17251E; }
.card-body { margin: 0; font-size: 14.5px; line-height: 1.55; color: #5A6158; }
.pack-body { margin: 6px 0 16px; }
.step-vignette { margin-top: 12px; }
.fake-input {
  margin-top: 12px; height: 54px; border-radius: 15px;
  border: 1.5px solid #DDD8CA; background: #FAF8F2;
  padding: 0 15px; display: flex; align-items: center;
  font-size: 15px; color: #3D453E;
  overflow: hidden; white-space: nowrap; text-overflow: ellipsis;
}
.chip-row { margin-top: 8px; display: flex; gap: 8px; flex-wrap: wrap; }
.date-chip {
  height: 36px; padding: 0 14px; border-radius: 999px;
  display: inline-flex; align-items: center;
  font-size: 14px; font-weight: 600; color: #3D453E;
  background: #FFFFFF; border: 1.5px solid #DDD8CA;
}
.date-chip.is-selected { color: #F7F5F0; background: #1E4D3B; border-color: #1E4D3B; }

/* ——— Pack extras ——— */
.count-row { display: flex; align-items: baseline; gap: 10px; }
.count-num { font-size: 40px; font-weight: 800; letter-spacing: -1px; color: #17251E; }
.count-label { font-size: 15px; font-weight: 600; color: #5A6158; }
.count-note { margin-top: 4px; font-size: 13.5px; color: #7B8279; }

/* ——— Quotes ——— */
.quotes-grid { margin-top: 28px; }
.quote-card { display: flex; flex-direction: column; gap: 14px; }
.quote { margin: 0; font-size: 17px; font-weight: 600; line-height: 1.5; color: #17251E; text-wrap: pretty; }
.quote-attr { font-size: 13px; color: #7B8279; }

/* ——— Waters ——— */
.waters-wrap { background: #F7F5F0; padding-bottom: clamp(64px, 8vw, 104px); }
.waters-card {
  background: linear-gradient(175deg, #235743 0%, #1E4D3B 45%, #163B2D 100%);
  border-radius: 18px; padding: clamp(36px, 5vw, 60px);
  position: relative; overflow: hidden;
}
.waters-inner { position: relative; }
.waters-chips { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 8px; max-width: 720px; }
.waters-more { margin-top: 22px; font-size: 13.5px; color: rgba(245,243,234,0.6); }
.waters-link {
  border: none; background: none; padding: 0;
  font-size: 13.5px; color: #D98E52; font-weight: 700; cursor: pointer;
}

/* ——— Pricing ——— */
.container-narrow { max-width: 900px; }
.pricing-head { text-align: center; }
.pricing-head .section-sub { margin-left: auto; margin-right: auto; max-width: 480px; }
.pricing-grid {
  margin-top: 40px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 16px; align-items: stretch;
}
.price-card { padding: 30px; display: flex; flex-direction: column; }
.price-card-green {
  background: linear-gradient(165deg, #235743, #1E4D3B 55%, #17402F);
  border-radius: 18px; position: relative; overflow: hidden;
}
.price-eyebrow {
  font-size: 12px; font-weight: 800; letter-spacing: 0.13em;
  text-transform: uppercase; color: #8A8F85;
}
.on-green-eyebrow { color: #D98E52; letter-spacing: 0.15em; }
.price { margin-top: 10px; font-size: 48px; font-weight: 800; letter-spacing: -1px; color: #17251E; }
.price-row { margin-top: 10px; display: flex; align-items: baseline; gap: 8px; }
.on-green-price { margin-top: 0; color: #F5F3EA; }
.price-per { font-size: 15px; font-weight: 600; color: rgba(245,243,234,0.6); }
.price-note { margin-top: 2px; font-size: 13.5px; color: #7B8279; }
.on-green-note { color: rgba(245,243,234,0.6); }
.check-list { margin-top: 20px; display: flex; flex-direction: column; gap: 11px; }
.check-item {
  display: flex; gap: 10px; align-items: center;
  font-size: 15px; font-weight: 600; color: #3D453E;
}
.check-item svg { flex-shrink: 0; }
.check-item-green { color: rgba(245,243,234,0.9); }
.price-spacer { flex: 1; }
.btn-neutral {
  margin-top: 24px; height: 52px; border-radius: 15px;
  border: 1.5px solid #C9C4B4; background: #FFFFFF;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; color: #3D453E;
  width: 100%; cursor: pointer; transition: background 0.2s ease;
}
.btn-neutral:hover { background: #F1EEE5; }
.btn-neutral.is-static { cursor: default; }
.btn-neutral.is-static:hover { background: #FFFFFF; }
.btn-cta { margin-top: 24px; }

/* ——— FAQ ——— */
.container-faq { max-width: 760px; }
.faq-h2 { margin-bottom: 28px; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: #FFFFFF; border: 1px solid #E5E1D4; border-radius: 16px;
  box-shadow: 0 1px 3px rgba(23,37,30,0.05);
}
.faq-q {
  width: 100%; min-height: 54px; padding: 15px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  border: none; background: none; cursor: pointer; text-align: left;
}
.faq-q span { font-size: 16px; font-weight: 800; letter-spacing: -0.2px; color: #17251E; }
.faq-q svg { flex-shrink: 0; transform: rotate(0deg); transition: transform 0.25s ease; }
.faq-item.is-open .faq-q svg { transform: rotate(180deg); }
.faq-a { padding: 0 20px 17px; border-top: 1px dashed #E0DCCE; margin-top: -2px; }
.faq-a p { margin: 13px 0 0; font-size: 14.5px; line-height: 1.55; color: #5A6158; }

/* ——— Footer ——— */
.footer { background: #163B2D; position: relative; overflow: hidden; }
.footer-row {
  padding-top: clamp(48px, 6vw, 72px); padding-bottom: clamp(48px, 6vw, 72px);
  position: relative;
  display: flex; flex-wrap: wrap; gap: 32px;
  align-items: flex-start; justify-content: space-between;
}
.footer-brand { display: flex; align-items: center; gap: 11px; }
.footer-brand span { font-size: 24px; font-weight: 800; letter-spacing: -0.5px; color: #F5F3EA; }
.footer-tagline { margin-top: 10px; font-size: 14px; color: rgba(245,243,234,0.6); }
.footer-right { display: flex; flex-direction: column; gap: 8px; align-items: flex-start; }
.footer-contact {
  border: none; background: none; padding: 0;
  font-size: 15px; font-weight: 700; color: #F5F3EA; cursor: pointer;
}
.footer-fine { font-size: 13px; color: rgba(245,243,234,0.45); }
.footer-fine a { color: rgba(245,243,234,0.45); }
.footer-fine a:hover { color: rgba(245,243,234,0.45); }

/* ——— Contact modal ——— */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(23,37,30,0.45);
  display: flex; align-items: center; justify-content: center;
  padding: 20px; z-index: 100; animation: ffFadeIn 0.25s ease;
}
.modal-card {
  width: 100%; max-width: 440px;
  background: #FFFFFF; border: 1px solid #E5E1D4; border-radius: 18px;
  padding: 26px; box-shadow: 0 24px 60px rgba(23,37,30,0.25);
  animation: ffPop 0.3s ease;
}
.modal-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.modal-title { margin-top: 8px; font-size: 24px; font-weight: 800; letter-spacing: -0.4px; color: #17251E; }
.modal-close {
  width: 38px; height: 38px; border-radius: 999px;
  background: #FFFFFF; border: 1px solid #E3DFD3;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; flex-shrink: 0; transition: background 0.2s ease;
}
.modal-close:hover { background: #F1EEE5; }
.modal-intro { margin: 6px 0 0; font-size: 14px; line-height: 1.5; color: #5A6158; }
#contactForm { margin-top: 18px; display: flex; flex-direction: column; gap: 10px; }
#contactForm input[type="email"] {
  width: 100%; height: 54px; border-radius: 15px;
  border: 1.5px solid #DDD8CA; background: #FFFFFF;
  padding: 0 16px; font-size: 16px; color: #17251E; font-family: inherit;
  box-shadow: 0 1px 2px rgba(23,37,30,0.04);
}
#contactForm textarea {
  width: 100%; height: 120px; border-radius: 15px;
  border: 1.5px solid #DDD8CA; background: #FFFFFF;
  padding: 14px 16px; font-size: 16px; line-height: 1.5; color: #17251E;
  font-family: inherit; box-shadow: 0 1px 2px rgba(23,37,30,0.04); resize: none;
}
.btn-send {
  height: 54px; width: 100%;
  box-shadow: 0 6px 16px rgba(190,93,32,0.3);
}
/* ——— Support page (fishfly.app/support — D-159 §3) ——— */
.support-card { margin-top: 28px; max-width: 560px; }
.support-card form { display: flex; flex-direction: column; gap: 10px; }
.support-card input[type="email"] {
  width: 100%; height: 54px; border-radius: 15px;
  border: 1.5px solid #DDD8CA; background: #FFFFFF;
  padding: 0 16px; font-size: 16px; color: #17251E; font-family: inherit;
  box-shadow: 0 1px 2px rgba(23,37,30,0.04);
}
.support-card textarea {
  width: 100%; height: 120px; border-radius: 15px;
  border: 1.5px solid #DDD8CA; background: #FFFFFF;
  padding: 14px 16px; font-size: 16px; line-height: 1.5; color: #17251E;
  font-family: inherit; box-shadow: 0 1px 2px rgba(23,37,30,0.04); resize: none;
}
.support-card .sent-banner { margin-top: 0; }
.support-fine { margin: 24px 0 0; font-size: 13.5px; color: #7B8279; max-width: 560px; }

.sent-banner {
  margin-top: 18px;
  background: #E7EEE6; border: 1px solid #CBDCCE; border-radius: 14px;
  padding: 13px 15px; display: flex; gap: 11px; align-items: center;
  animation: ffPop 0.4s ease;
}
.sent-banner svg { flex-shrink: 0; }
.sent-title { font-size: 14.5px; font-weight: 800; color: #1E4D3B; }
.sent-body { font-size: 13px; color: #5A6A5E; margin-top: 1px; }
#contactSentWrap .btn-neutral { margin-top: 12px; }
