/* Ported homepage chrome (from styles.css). */
.site-header a,.site-footer a{color:inherit;text-decoration:none}
:root{
  --black: #0d0d0d;
  --charcoal: #1a1a1a;
  --charcoal-2: #24211e;
  --ink: #161412;
  --ink-muted: #66615a;
  --paper: #f4efe7;
  --paper-2: #ebe3d8;
  --white: #ffffff;
  --orange: #f26a21;
  --orange-dark: #c84f11;
  --teal: #2ca6d9;
  --line: rgba(22, 20, 18, 0.12);
  --line-dark: rgba(255, 255, 255, 0.13);
  --shadow-sm: 0 10px 30px rgba(18, 12, 7, 0.08);
  --shadow-md: 0 24px 70px rgba(18, 12, 7, 0.14);
  --shadow-dark: 0 28px 80px rgba(0, 0, 0, 0.34);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1280px;
  --header-height: 86px;
  --map-background: #0d0d0d;
  --map-panel: #17130f;
  --map-land: #ffffff;
  --map-land-muted: #3a342e;
  --map-border: #71685f;
  --map-active: #f26a21;
  --map-selected: #2ca6d9;
  --map-label: #ffffff;
  --map-label-muted: #b8b0a8;
}
body{
  margin: 0;
  position: relative;
  color: var(--ink);
  background:
    radial-gradient(circle at 92% 6%, rgba(242, 106, 33, 0.12), transparent 24%),
    radial-gradient(circle at 10% 34%, rgba(242, 106, 33, 0.05), transparent 28%),
    radial-gradient(circle at 14% 92%, rgba(44, 166, 217, 0.05), transparent 24%),
    linear-gradient(180deg, #faf6ef 0%, var(--paper) 24%, #f7f1e8 100%);
}
main > section{
  position: relative;
  isolation: isolate;
}
main > section::before{
  position: absolute;
  z-index: 0;
  width: min(34vw, 360px);
  height: min(34vw, 360px);
  background: radial-gradient(circle, rgba(242, 106, 33, 0.08), transparent 72%);
  content: "";
  pointer-events: none;
  opacity: 0.9;
}
main > section:nth-of-type(odd)::before{
  top: 8%;
  right: -10%;
}
main > section:nth-of-type(even)::before{
  bottom: 4%;
  left: -10%;
}
main > section > *{
  position: relative;
  z-index: 1;
}
body.nav-open{
  overflow: hidden;
}
.hc-container{
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}
.button{
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
.button::after{
  font-size: 1.08em;
  content: "\2192";
  transition: transform 0.2s ease;
}
.button:hover{
  transform: translateY(-2px);
}
.button:hover::after{
  transform: translateX(4px);
}
.button--primary{
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 12px 30px rgba(242, 106, 33, 0.26);
}
.button--primary:hover{
  background: var(--orange-dark);
  box-shadow: 0 16px 36px rgba(242, 106, 33, 0.34);
}
.button--dark{
  color: var(--white);
  background: var(--black);
}
.button--dark:hover{
  background: #2a2723;
}
.button--light{
  color: var(--black);
  background: var(--white);
}
.button--light:hover{
  background: var(--paper);
}
.button--ghost{
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
}
.button--ghost:hover{
  border-color: var(--orange);
  background: rgba(255, 255, 255, 0.06);
}
.button--outline{
  color: var(--ink);
  background: transparent;
  border-color: rgba(22, 20, 18, 0.26);
}
.button--outline:hover{
  border-color: var(--orange);
  background: rgba(242, 106, 33, 0.06);
}
.button--wide{
  width: 100%;
}
.button-row{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
/* --- Persistent chrome: header/footer stay fixed while the page content
   swaps during same-site navigation. Progressive enhancement: unsupported
   browsers just navigate normally. --- */
@view-transition { navigation: auto; }
.site-header { view-transition-name: site-header; }
.site-footer { view-transition-name: site-footer; }
::view-transition-group(site-header),
::view-transition-group(site-footer) { animation-duration: 0s; }

.site-header{
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  background: rgba(250, 248, 244, 0.94);
  border-bottom: 1px solid rgba(22, 20, 18, 0.08);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.2s ease, background-color 0.2s ease;
}
.site-header.is-scrolled{
  background: rgba(250, 248, 244, 0.98);
  box-shadow: 0 8px 28px rgba(22, 20, 18, 0.08);
}
.header-inner{
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: flex-start;
  gap: 28px;
}
.brand{
  display: grid;
  flex: 0 0 auto;
  grid-template-columns: 44px 174px;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 0 10px;
  padding: 0;
  margin: 0;
}
.brand__tiger{
  width: 44px;
  height: 44px;
  grid-row: 1 / 3;
  object-fit: contain;
}
.brand__wordmark{
  width: 174px;
  height: auto;
}
.brand__tagline{
  margin-top: -2px;
  color: #4c4843;
  font-size: 0.54rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1;
  white-space: nowrap;
}
.primary-nav{
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.7vw, 26px);
  margin-left: clamp(26px, 4vw, 74px);
}
.primary-nav a:not(.button){
  position: relative;
  padding: 11px 0;
  color: #302d29;
  font-size: 1.05rem;
  font-weight: 720;
  line-height: 1.4;
  white-space: nowrap;
}
.primary-nav a:not(.button)::after{
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}
.primary-nav a:not(.button):hover::after,
.primary-nav a[aria-current="page"]::after{
  transform: scaleX(1);
  transform-origin: left;
}
.header-cta{
  min-height: 46px;
  padding-inline: 17px;
  font-size: 0.9rem;
  white-space: nowrap;
}
.primary-nav .header-cta{
  margin-left: clamp(26px, 4vw, 74px);
}
.nav-toggle{
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(22, 20, 18, 0.16);
  border-radius: 12px;
  cursor: pointer;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after{
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  content: "";
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle span{
  position: relative;
}
.nav-toggle span::before{
  position: absolute;
  top: -6px;
}
.nav-toggle span::after{
  position: absolute;
  top: 6px;
}
.nav-open .nav-toggle span{
  background: transparent;
}
.nav-open .nav-toggle span::before{
  top: 0;
  transform: rotate(45deg);
}
.nav-open .nav-toggle span::after{
  top: 0;
  transform: rotate(-45deg);
}
.hero-copy .button-row{
  margin-top: 34px;
}
.pricing-preview__actions .button{
  min-width: 210px;
}
.plan-card .button{
  margin-top: auto;
}
.site-footer{
  padding: 56px 0 20px;
  color: var(--white);
  background: #0a0a0a;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.35fr 0.72fr 0.72fr 0.9fr 1.2fr;
  gap: clamp(20px, 3vw, 44px);
}
.footer-brand .brand{
  width: max-content;
  grid-template-columns: 52px 190px;
}
.footer-brand .brand__tiger{
  width: 52px;
  height: 52px;
}
.footer-brand .brand__wordmark{
  width: 190px;
}
.footer-brand .brand__tagline{
  color: rgba(255, 255, 255, 0.85);
}
.footer-brand p{
  max-width: 310px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
}
.social-links{
  display: flex;
  gap: 9px;
  margin-top: 16px;
}
.social-links a{
  display: flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.social-links a svg{
  width: 17px;
  height: 17px;
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.social-links a:hover{
  color: var(--white);
  background: var(--orange);
  border-color: var(--orange);
}
.footer-column h3,
.footer-contact h3{
  margin: 0 0 18px;
  color: var(--white);
  font-size: 0.84rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer-column nav{
  display: grid;
  gap: 10px;
}
.footer-column a,
.footer-contact address,
.footer-contact a{
  color: #ffffff;
  font-size: 0.9rem;
  font-style: normal;
  transition: color 0.2s ease;
}
.footer-column a:hover,
.footer-contact a:hover{
  color: var(--orange);
}
.footer-contact address{
  display: grid;
  gap: 8px;
  line-height: 1.8;
}
.footer-contact__item{
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-contact__item svg,
.footer-contact__phone svg{
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer-contact__phone{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}
.trust-badges{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.trust-badges img{
  width: 118px;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}
.footer-bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding-top: 16px;
  color: rgba(255, 255, 255, 0.82);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.8rem;
}
.footer-bottom__links{
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom__links a:hover{
  color: var(--white);
}
@media (max-width: 1180px){
:root{
    --header-height: 78px;
  }
.header-inner{
    gap: 18px;
  }
.brand{
    grid-template-columns: 40px 152px;
  }
.brand__tiger{
    width: 40px;
    height: 40px;
  }
.brand__wordmark{
    width: 152px;
  }
.brand__tagline{
    font-size: 0.48rem;
  }
.primary-nav{
    gap: 13px;
  margin-left: clamp(20px, 3vw, 42px);
  }
.primary-nav a:not(.button){
    font-size: 0.85rem;
  }
.header-cta{
    padding-inline: 14px;
  }
.primary-nav .header-cta{
    margin-left: clamp(20px, 3vw, 42px);
  }
.footer-grid{
    grid-template-columns: 1.4fr repeat(3, 0.8fr);
  }
.footer-contact{
    grid-column: 1 / -1;
  }
}
@media (max-width: 980px){
.nav-toggle{
    display: flex;
    margin-left: auto;
  }
.site-header .primary-nav{
    position: fixed;
    z-index: 99;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    max-height: calc(100vh - var(--header-height));
    align-content: start;
    gap: 0;
    padding: 20px;
    overflow-y: auto;
    background: rgba(250, 248, 244, 0.99);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 50px rgba(22, 20, 18, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    margin-left: 0;
  }
.nav-open .primary-nav{
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
.primary-nav a:not(.button){
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
  }
.primary-nav a:not(.button)::after{
    display: none;
  }
.primary-nav .header-cta{
    margin-left: 0;
    margin-top: 18px;
  }
}
@media (max-width: 720px){
:root{
    --header-height: 72px;
  }
main > section::before{
    width: 240px;
    height: 240px;
    opacity: 0.68;
  }
.hc-container{
    width: min(calc(100% - 28px), var(--container));
  }
.brand{
    grid-template-columns: 36px 138px;
    column-gap: 8px;
  }
.brand__tiger{
    width: 36px;
    height: 36px;
  }
.brand__wordmark{
    width: 138px;
  }
.brand__tagline{
    display: block;
    font-size: 0.42rem;
    letter-spacing: 0.05em;
  }
.hero-copy .button-row{
    align-items: stretch;
    flex-direction: column;
  }
.hero-copy .button{
    width: 100%;
  }
.pricing-preview__actions .button{
    width: 100%;
  }
.final-cta .button{
    width: 100%;
  }
.footer-grid{
    grid-template-columns: repeat(2, 1fr);
  }
.footer-brand,
  .footer-contact{
    grid-column: 1 / -1;
  }
.footer-bottom{
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 480px){
.footer-grid{
    grid-template-columns: 1fr;
  }
.footer-brand,
  .footer-contact{
    grid-column: auto;
  }
}
.hero-secondary-actions .button{
  min-height: 42px;
  padding: 10px 15px;
  font-size: 0.76rem;
}
@media (max-width: 720px){
.hero-secondary-actions .button{
    width: 100%;
  }
.pricing-hero__actions .button{
    width: 100%;
  }
}
.dashboard-showcase .hc-container{
  position: relative;
  z-index: 1;
}
@media (max-width:640px){
.mobile-action-bar .button{min-height:44px;padding:10px 14px;font-size:.78rem}
}
.site-header nav,.site-footer nav{position:static;top:auto;z-index:auto;background:transparent;border:0;-webkit-backdrop-filter:none;backdrop-filter:none;box-shadow:none}
.site-header,.site-footer,.site-header *,.site-footer *{box-sizing:border-box}
.site-header,.site-footer,.site-header *,.site-footer *{font-family:ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif}

/* Osano cookie UI overrides: smaller footprint + brand-aligned colors. */
:root{
  --cookie-bg:#fff9f2;
  --cookie-bg-2:#fff2e2;
  --cookie-text:#1b1712;
  --cookie-muted:#625a51;
  --cookie-line:rgba(27,23,18,.14);
  --cookie-accent:#f26a21;
  --cookie-accent-hover:#c84f11;
}

.osano-cm-window,
.osano-cm-window *{
  font-family:Inter,ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif !important;
}

.osano-cm-dialog.osano-cm-dialog--type_bar{
  width:min(420px,calc(100vw - 24px)) !important;
  max-width:min(420px,calc(100vw - 24px)) !important;
  left:12px !important;
  right:auto !important;
  bottom:12px !important;
  border:1px solid var(--cookie-line) !important;
  border-radius:14px !important;
  background:var(--cookie-bg) !important;
  box-shadow:0 18px 44px rgba(13,13,13,.22) !important;
}

.osano-cm-content{
  padding:12px 14px !important;
}

.osano-cm-message{
  color:var(--cookie-text) !important;
  font-size:13px !important;
  line-height:1.45 !important;
}

.osano-cm-link{
  color:var(--cookie-accent-hover) !important;
  font-weight:700 !important;
}

.osano-cm-dialog__close,
.osano-cm-info-dialog-header__close{
  width:28px !important;
  height:28px !important;
  min-width:28px !important;
  min-height:28px !important;
  border-radius:999px !important;
}

.osano-cm-widget{
  width:44px !important;
  height:44px !important;
  min-width:44px !important;
  min-height:44px !important;
  border:1px solid var(--cookie-line) !important;
  border-radius:999px !important;
  background:var(--cookie-bg) !important;
  box-shadow:0 10px 26px rgba(13,13,13,.2) !important;
}

.osano-cm-widget svg{
  transform:scale(.86);
}

.osano-cm-info-dialog__info,
.osano-cm-info{
  width:min(460px,calc(100vw - 24px)) !important;
  max-width:min(460px,calc(100vw - 24px)) !important;
  border:1px solid var(--cookie-line) !important;
  border-radius:14px !important;
  background:var(--cookie-bg) !important;
  color:var(--cookie-text) !important;
  box-shadow:0 22px 50px rgba(13,13,13,.24) !important;
}

.osano-cm-info-dialog-header,
.osano-cm-view,
.osano-cm-disclosure,
.osano-cm-info-dialog__header,
.osano-cm-info-dialog__footer{
  background:transparent !important;
}

.osano-cm-header{
  color:var(--cookie-text) !important;
  font-size:18px !important;
  font-weight:800 !important;
}

.osano-cm-view__description,
.osano-cm-disclosure__description,
.osano-cm-description,
.osano-cm-info-dialog p{
  color:var(--cookie-muted) !important;
  font-size:13px !important;
  line-height:1.45 !important;
}

.osano-cm-button,
.osano-cm-save{
  min-height:36px !important;
  padding:7px 14px !important;
  border-radius:9px !important;
  border:1px solid var(--cookie-accent) !important;
  background:var(--cookie-accent) !important;
  color:#fff !important;
  font-size:13px !important;
  font-weight:800 !important;
}

.osano-cm-button:hover,
.osano-cm-save:hover{
  background:var(--cookie-accent-hover) !important;
  border-color:var(--cookie-accent-hover) !important;
}

.osano-cm-toggle{
  color:var(--cookie-accent-hover) !important;
  font-size:12px !important;
  font-weight:700 !important;
}

@media (max-width:640px){
  .osano-cm-dialog.osano-cm-dialog--type_bar{
    left:10px !important;
    right:10px !important;
    width:auto !important;
    max-width:none !important;
    bottom:10px !important;
  }

  .osano-cm-info-dialog__info,
  .osano-cm-info{
    width:calc(100vw - 20px) !important;
    max-width:none !important;
  }
}
