/* PhoenixFlow UK — static site styles */

:root{
  --bg:#FFFCF8;
  --bg-alt:#FFF6EA;
  --card:#FFFFFF;
  --border:rgba(26,22,19,0.12);
  --border-strong:rgba(26,22,19,0.22);
  --ink:#1A1613;
  --ink-soft:#3A332C;
  --muted:#6B6255;
  --accent:#E65C18;
  --accent-soft:rgba(230,92,24,0.12);
  --accent-deep:#C24A12;
  --gold:#C78A2B;
  --gold-soft:rgba(199,138,43,0.14);
  --teal:#147486;
  --teal-soft:rgba(20,116,134,0.12);
  --shadow:0 24px 60px rgba(26,22,19,0.10);
  --shadow-sm:0 8px 20px rgba(26,22,19,0.08);
  --radius:16px;
}

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

html{scroll-behavior:smooth;}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto;}
  *{animation-duration:0.01ms !important;animation-iteration-count:1 !important;transition-duration:0.01ms !important;}
}

body{
  background:var(--bg);
  color:var(--ink);
  font-family:'Inter',-apple-system,BlinkMacSystemFont,sans-serif;
  line-height:1.6;
  overflow-x:hidden;
}

a{color:inherit;text-decoration:none;}
ul{list-style:none;}
img{max-width:100%;display:block;}
button{font:inherit;}
:focus-visible{outline:2px solid var(--accent-deep);outline-offset:3px;}

h1,h2,h3,h4{
  font-family:'Fraunces',Georgia,serif;
  font-weight:600;
  letter-spacing:-0.01em;
  color:var(--ink);
  text-wrap:balance;
}

code, .mono{
  font-family:'IBM Plex Mono',monospace;
}

.container{
  width:100%;
  max-width:1160px;
  margin:0 auto;
  padding:0 24px;
}

section{padding:104px 0;position:relative;}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family:'IBM Plex Mono',monospace;
  color:var(--accent-deep);
  font-size:12.5px;
  font-weight:600;
  letter-spacing:0.14em;
  text-transform:uppercase;
  margin-bottom:16px;
}
.eyebrow::before{
  content:'';
  width:24px;height:2px;
  background:linear-gradient(90deg,var(--accent),var(--gold));
  display:inline-block;
}

.section-head{max-width:640px;margin-bottom:56px;}
.section-head.center{max-width:640px;margin-left:auto;margin-right:auto;text-align:center;}

.section-title{
  font-size:clamp(30px,4.4vw,44px);
  line-height:1.08;
  margin-bottom:16px;
}

.section-sub{
  color:var(--muted);
  font-size:17px;
  max-width:560px;
}
.center .section-sub{margin-left:auto;margin-right:auto;}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  padding:16px 30px;
  border-radius:10px;
  font-weight:600;
  font-size:15px;
  cursor:pointer;
  border:1.5px solid transparent;
  transition:transform .25s cubic-bezier(.2,.8,.3,1), box-shadow .3s ease, background .3s ease, color .25s ease, border-color .25s ease;
  white-space:nowrap;
}

.btn-primary{
  background:var(--accent);
  color:#fff;
  box-shadow:0 10px 26px rgba(230,92,24,0.28);
}
.btn-primary:hover{
  transform:translateY(-3px);
  background:var(--accent-deep);
  box-shadow:0 16px 34px rgba(230,92,24,0.36);
}
.btn-primary:active{transform:translateY(-1px);}

.btn-outline{
  background:var(--card);
  color:var(--ink);
  border-color:var(--border-strong);
}
.btn-outline:hover{
  border-color:var(--accent);
  color:var(--accent-deep);
  transform:translateY(-3px);
  box-shadow:var(--shadow-sm);
}

.btn-dark{
  background:var(--ink);
  color:#fff;
  box-shadow:0 10px 26px rgba(26,22,19,0.25);
}
.btn-dark:hover{
  transform:translateY(-3px);
  background:#000;
}

.btn-block{width:100%;}
.btn-sm{padding:11px 20px;font-size:13.5px;}

/* Header */
header{
  position:fixed;
  top:0;left:0;right:0;
  z-index:1000;
  backdrop-filter:blur(16px);
  background:rgba(255,252,248,0.86);
  border-bottom:1px solid var(--border);
}

nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 24px;
  max-width:1160px;
  margin:0 auto;
}

.logo{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family:'Fraunces',Georgia,serif;
  font-weight:600;
  font-size:20px;
  color:var(--ink);
}
.logo .mark{color:var(--accent);}

.logo-img{
  height:34px;
  width:34px;
  flex-shrink:0;
}
@media (max-width:768px){
  .logo-img{height:30px;width:30px;}
}

.nav-links{
  display:flex;
  gap:32px;
  align-items:center;
}

.nav-links a:not(.btn){
  font-size:14.5px;
  font-weight:500;
  color:var(--ink-soft);
  position:relative;
  transition:color .2s ease;
}
.nav-links a:not(.btn):hover{color:var(--accent-deep);}
.nav-links a:not(.btn)::after{
  content:'';
  position:absolute;
  left:0;bottom:-5px;
  width:0;height:2px;
  background:linear-gradient(90deg,var(--accent),var(--gold));
  transition:width .25s ease;
}
.nav-links a:not(.btn):hover::after{width:100%;}

.nav-links .btn{padding:11px 22px;font-size:13.5px;}

.menu-toggle{
  display:none;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:5px;
  width:44px;
  height:44px;
  background:none;
  border:none;
  cursor:pointer;
  padding:0;
}
.menu-toggle span{
  width:22px;height:2px;background:var(--ink);
  transition:all .25s ease;
}

/* Hero */
.hero{
  padding:168px 0 100px;
  background:linear-gradient(180deg,var(--bg-alt) 0%, var(--bg) 100%);
  overflow:hidden;
}

.hero-inner{max-width:760px;}

.hero h1{
  font-size:clamp(38px,6vw,66px);
  line-height:1.04;
  margin-bottom:24px;
  animation:fadeUp .7s ease .1s both;
}

.hero p{
  color:var(--muted);
  font-size:clamp(16px,1.6vw,19px);
  max-width:560px;
  margin:0 0 38px;
  animation:fadeUp .7s ease .2s both;
}

.hero-actions{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  animation:fadeUp .7s ease .3s both;
}

@keyframes fadeUp{
  from{opacity:0;transform:translateY(18px);}
  to{opacity:1;transform:translateY(0);}
}

/* Problem */
.problem{background:var(--bg);}

.problem-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:22px;
  margin-top:12px;
}

.problem-item{
  display:flex;
  gap:16px;
  align-items:flex-start;
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:26px 26px;
  transition:transform .3s cubic-bezier(.2,.8,.3,1), border-color .3s ease, box-shadow .3s ease;
}
.problem-item:hover{
  transform:translateY(-4px);
  border-color:transparent;
  box-shadow:var(--shadow-sm);
}

.problem-icon{
  flex-shrink:0;
  width:42px;height:42px;
  border-radius:11px;
  background:var(--accent-soft);
  color:var(--accent-deep);
  display:flex;
  align-items:center;
  justify-content:center;
}

.problem-item p{color:var(--ink-soft);font-size:15.5px;font-weight:500;}

/* How it works */
.how{background:var(--bg-alt);}

.steps{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:32px;
  margin-top:12px;
}

.step{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:32px 28px;
}

.step-num{
  font-family:'Fraunces',Georgia,serif;
  font-weight:600;
  width:52px;height:52px;
  border-radius:50%;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  margin-bottom:20px;
  background:linear-gradient(135deg,var(--accent),var(--gold));
  box-shadow:0 10px 24px rgba(230,92,24,0.25);
}

.step h3{font-size:19px;margin-bottom:10px;font-weight:600;}
.step p{color:var(--muted);font-size:14.5px;}

/* Automations */
.automations{background:var(--bg);}

.auto-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
  margin-top:12px;
}

.auto-card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:28px;
  display:flex;
  flex-direction:column;
  transition:transform .3s cubic-bezier(.2,.8,.3,1), border-color .3s ease, box-shadow .3s ease;
}
.auto-card:hover{
  transform:translateY(-4px);
  border-color:transparent;
  box-shadow:var(--shadow-sm);
}

.auto-card-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  margin-bottom:14px;
}

.auto-card h3{font-size:19px;font-weight:600;}

.badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-family:'IBM Plex Mono',monospace;
  font-size:11.5px;
  font-weight:600;
  letter-spacing:0.04em;
  text-transform:uppercase;
  padding:5px 11px;
  border-radius:999px;
  white-space:nowrap;
  flex-shrink:0;
}
.badge-built{
  background:var(--teal-soft);
  color:var(--teal);
}
.badge-built .dot{width:6px;height:6px;border-radius:50%;background:var(--teal);}

.auto-card p{color:var(--muted);font-size:14.5px;flex-grow:1;margin-bottom:16px;}

.auto-card .btn{align-self:flex-start;}

/* Pricing */
.pricing{background:var(--bg-alt);}

.pricing-sub-head{
  margin:64px 0 32px;
}
.pricing-sub-head h3{font-size:22px;font-weight:600;margin-bottom:8px;}
.pricing-sub-head p{color:var(--muted);font-size:14.5px;}

.tier-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.tier-card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:32px 28px;
  display:flex;
  flex-direction:column;
  position:relative;
  transition:transform .3s cubic-bezier(.2,.8,.3,1), border-color .3s ease, box-shadow .3s ease;
}
.tier-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-sm);
}

.tier-card.featured{
  border-color:var(--accent);
  box-shadow:var(--shadow);
}

.tier-badge{
  position:absolute;
  top:-13px;left:28px;
  background:var(--accent);
  color:#fff;
  font-family:'IBM Plex Mono',monospace;
  font-size:11px;
  font-weight:600;
  letter-spacing:0.06em;
  text-transform:uppercase;
  padding:6px 14px;
  border-radius:999px;
}
.tier-badge.gold{background:var(--gold);}

.tier-name{font-size:19px;font-weight:600;margin-bottom:10px;}

.tier-price{
  font-family:'Fraunces',Georgia,serif;
  font-size:34px;
  font-weight:600;
  margin-bottom:4px;
}
.tier-price span{
  font-family:'Inter',sans-serif;
  font-size:14px;
  font-weight:500;
  color:var(--muted);
}

.tier-minimum{
  font-family:'IBM Plex Mono',monospace;
  font-size:12px;
  color:var(--muted);
  margin-bottom:20px;
}

.tier-care-note{
  font-size:13px;
  color:var(--muted);
  margin-bottom:16px;
}

.pricing-footnote{
  text-align:center;
  color:var(--muted);
  font-size:14px;
  max-width:560px;
  margin:16px auto 0;
}

.tier-features{margin:16px 0 26px;flex-grow:1;}
.tier-features li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  font-size:14.5px;
  color:var(--ink-soft);
  padding:7px 0;
}
.tier-features li svg{flex-shrink:0;margin-top:3px;color:var(--accent-deep);}
.tier-features li.included{color:var(--muted);font-style:italic;}
.tier-features li.included svg{color:var(--teal);}

/* Bundle banner */
.bundle-banner{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:20px;
  padding:40px;
  margin-top:56px;
}
.bundle-banner-head{
  text-align:center;
  max-width:520px;
  margin:0 auto 32px;
}
.bundle-banner-head h3{font-size:22px;font-weight:600;margin-bottom:8px;}
.bundle-banner-head p{color:var(--muted);font-size:14.5px;}

.bundle-examples{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}

.bundle-example{
  background:var(--bg-alt);
  border:1px solid var(--border);
  border-radius:14px;
  padding:24px;
}
.bundle-example .bundle-name{
  font-family:'IBM Plex Mono',monospace;
  font-size:12px;
  font-weight:600;
  letter-spacing:0.06em;
  text-transform:uppercase;
  color:var(--accent-deep);
  margin-bottom:12px;
}
.bundle-example .bundle-sum{color:var(--muted);font-size:14.5px;margin-bottom:6px;}
.bundle-example .bundle-total{font-size:15.5px;color:var(--ink-soft);margin-bottom:6px;}
.bundle-example .bundle-save{
  font-family:'Fraunces',Georgia,serif;
  font-size:20px;
  font-weight:600;
  color:var(--teal);
}

/* Websites */
.websites{background:var(--bg);}

/* About */
.about{background:var(--bg-alt);}

.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:64px;
  align-items:start;
}

.about-copy p{color:var(--ink-soft);font-size:16.5px;margin-bottom:18px;}
.about-copy p:last-child{margin-bottom:0;}

.about-location{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-top:22px;
  padding:10px 18px;
  border:1px solid var(--border);
  border-radius:999px;
  background:var(--card);
  font-size:14px;
  font-weight:600;
  color:var(--ink-soft);
}
.about-location svg{color:var(--accent-deep);}

.industries-box h3{font-size:19px;font-weight:600;margin-bottom:18px;}

.tag-list{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.tag{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:999px;
  padding:10px 18px;
  font-size:14px;
  font-weight:500;
  color:var(--ink-soft);
  transition:border-color .25s ease, color .25s ease, transform .25s ease;
}
.tag:hover{
  border-color:var(--accent);
  color:var(--accent-deep);
  transform:translateY(-2px);
}

/* Final CTA */
.cta-section{
  text-align:center;
  background:linear-gradient(160deg,var(--bg-alt) 0%, var(--gold-soft) 100%);
  position:relative;
  overflow:hidden;
}
.cta-section::before{
  content:'';
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 15% 20%, rgba(230,92,24,0.16), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(20,116,134,0.14), transparent 45%);
  pointer-events:none;
}
.cta-section .container{position:relative;z-index:1;}
.cta-section h2{
  font-size:clamp(30px,5vw,48px);
  margin-bottom:16px;
  max-width:760px;
  margin-left:auto;
  margin-right:auto;
}
.cta-section p{color:var(--ink-soft);font-size:16.5px;margin-bottom:36px;max-width:560px;margin-left:auto;margin-right:auto;}
.cta-section .btn{padding:19px 42px;font-size:15.5px;}

/* Footer */
footer{
  padding:64px 0 36px;
  border-top:1px solid var(--border);
  background:var(--bg);
}

.footer-top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:40px;
  flex-wrap:wrap;
  margin-bottom:40px;
}

.footer-brand .logo{margin-bottom:12px;}
.footer-brand p{color:var(--muted);font-size:14px;max-width:280px;}

.footer-cols{
  display:flex;
  gap:56px;
  flex-wrap:wrap;
}

.footer-col h4{
  font-family:'IBM Plex Mono',monospace;
  font-size:12px;
  font-weight:600;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--muted);
  margin-bottom:16px;
}
.footer-col ul{display:flex;flex-direction:column;gap:11px;}
.footer-col a{color:var(--ink-soft);font-size:14.5px;transition:color .2s ease;}
.footer-col a:hover{color:var(--accent-deep);}

.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
  padding-top:28px;
  border-top:1px solid var(--border);
}
.footer-bottom p{color:var(--muted);font-size:13px;}

/* Scroll reveal */
.reveal{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .7s ease, transform .7s ease;
}
.reveal.visible{
  opacity:1;
  transform:translateY(0);
}

/* Responsive */
@media (max-width:900px){
  .problem-grid{grid-template-columns:1fr;}
  .steps{grid-template-columns:1fr;}
  .auto-grid{grid-template-columns:1fr;}
  .tier-grid{grid-template-columns:1fr;}
  .bundle-examples{grid-template-columns:1fr;}
  .about-grid{grid-template-columns:1fr;gap:40px;}
}

@media (max-width:768px){
  section{padding:76px 0;}
  .hero{padding:140px 0 70px;}
  .nav-links{
    position:fixed;
    top:66px;left:0;right:0;
    flex-direction:column;
    align-items:flex-start;
    gap:0;
    background:rgba(255,252,248,0.98);
    border-bottom:1px solid var(--border);
    max-height:0;
    overflow:hidden;
    transition:max-height .3s ease;
  }
  .nav-links.open{max-height:420px;}
  .nav-links a:not(.btn){
    padding:16px 24px;
    width:100%;
    border-bottom:1px solid var(--border);
  }
  .nav-links .btn{margin:20px 24px;}
  .menu-toggle{display:flex;}
  .hero-actions{flex-direction:column;width:100%;}
  .hero-actions .btn{width:100%;}
  .footer-top{flex-direction:column;}
  .footer-cols{gap:36px;}
}

@media (max-width:480px){
  .btn{white-space:normal;text-align:center;}
  .bundle-banner{padding:26px;}
}
