/* ============================================================
   SYMMETRY WAY — rebuilt from Penpot, block by block.
   Reference board: 1440px wide, root fill #f7f9fa.
   Two content systems exist in the design on purpose:
     wide   blocks (menu / hero / chips / orbit) → 1307-1314px
     narrow blocks (website / social / process / solutions) → 1156px
   Menu + portfolio slider logic ported from the roofing project.
   ============================================================ */

:root{
  /* content widths straight from Penpot */
  --w-head: 1314px;
  --w-wide: 1307px;
  --w-narrow: 1156px;

  --pad-head: max(20px, calc((100vw - var(--w-head)) / 2));
  --pad-wide: max(20px, calc((100vw - var(--w-wide)) / 2));
  --pad: max(20px, calc((100vw - var(--w-narrow)) / 2));

  --accent: #608fff;
  --accent-dark: #4a72e0;
  --ghost: rgba(72,94,146,.25);
  --ghost-line: #3a4476;
  --ghost-hover: rgba(72,94,146,.4);

  --navy-a: #080c39;
  --navy-b: #3a418c;
  --card-dark: #151842;

  --ink: #0f172a;
  --graphite: #2f3f4f;
  --muted: #858697;
  --offwhite: #fcfdfe;
  --lightblue: #eaf4ff;
  --line: #cfd6e2;
  --dot-idle: #e5eaef;
  --star: #ffc107;
  --bg: #f7f9fa;

  --r-hero: 50px;
  --r-pill: 100px;
  --r-card: 25px;

  --font: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;font-family:var(--font);color:var(--ink);background:var(--bg);line-height:1.5;-webkit-font-smoothing:antialiased}
body.menu-open{overflow:hidden}
a{color:inherit;text-decoration:none}
button{font:inherit;cursor:pointer;border:0;background:none}
img{max-width:100%;display:block}
h1,h2,h3,h4,p,ul{margin:0}
ul{padding:0;list-style:none}

/* ===== Buttons ===== */
.btn{display:inline-flex;align-items:center;justify-content:center;border-radius:var(--r-pill);font-family:var(--font);font-weight:700;font-size:17px;white-space:nowrap;transition:.2s ease}
.btn--sm{height:45px;padding:0 25px;font-weight:400}
.btn--lg{height:60px;padding:0 34px}
.btn--accent{background:var(--accent);color:#fff}
.btn--accent:hover{background:var(--accent-dark)}
.btn--ghost{background:var(--ghost);border:1px solid var(--ghost-line);color:var(--offwhite)}
.btn--ghost:hover{background:var(--ghost-hover)}

/* shared check icon — dark disc, 2px white ring, white tick (Group 2345) */
.check-dot{width:18px;height:18px;border-radius:50%;background:var(--ink);border:2px solid #fff;flex:none;display:inline-flex;align-items:center;justify-content:center}
.check-dot svg{width:8px;height:6px;display:block}

/* ============================================================
   Header — Menu head (x60 y22, 1314x45).
   Structure/behaviour ported from the roofing project:
   header nav + burger + floating capsule on scroll.
   ============================================================ */
.site-header{
  display:flex;align-items:center;justify-content:space-between;gap:32px;
  height:89px;padding:0 var(--pad-head);
  background:transparent;position:relative;z-index:50;
}
.logo{display:inline-flex;align-items:center;gap:10px;font-size:25px;font-weight:500;letter-spacing:0;text-transform:lowercase;color:var(--graphite);line-height:1.2}
.logo-mark{flex:none;width:47px;height:33px;object-fit:contain}

.nav{display:flex;align-items:center;gap:55px}
.nav a{font-size:15px;font-weight:400;color:var(--graphite);position:relative;transition:color .25s ease}
.nav a::after{content:"";position:absolute;left:0;bottom:-4px;width:100%;height:1px;background:currentColor;transform:scaleX(0);transform-origin:left;transition:transform .35s cubic-bezier(.16,1,.3,1)}
.nav a:hover{color:var(--accent)}
.nav a:hover::after{transform:scaleX(1)}
.nav-cta{display:none}

.header-cta{flex:none}

.menu-toggle{display:none;width:44px;height:44px;align-items:center;justify-content:center;flex-direction:column;gap:5px;border-radius:14px;background:var(--offwhite);box-shadow:0 6px 16px rgba(15,23,42,.08)}
.menu-toggle span{display:block;width:20px;height:2px;border-radius:2px;background:var(--graphite);transition:transform .3s cubic-bezier(.16,1,.3,1),opacity .2s ease}
.menu-toggle.is-active span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.menu-toggle.is-active span:nth-child(2){opacity:0}
.menu-toggle.is-active span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* floating capsule that slides in after scrolling (roofing pattern) */
.floating-nav{
  position:fixed;top:20px;left:50%;z-index:100;
  display:flex;align-items:center;gap:28px;
  padding:10px 10px 10px 28px;border-radius:var(--r-pill);
  background:#fff;box-shadow:0 16px 40px rgba(12,23,41,.16);
  opacity:0;pointer-events:none;transform:translate(-50%,-140%);
  transition:transform .4s cubic-bezier(.16,1,.3,1),opacity .4s ease,border-radius .2s ease,box-shadow .2s ease;
}
.floating-nav.is-visible{opacity:1;pointer-events:auto;transform:translate(-50%,0)}
.floating-nav a{font-size:15px;color:var(--graphite);white-space:nowrap;transition:color .25s ease}
.floating-nav a:hover{color:var(--accent)}
.floating-nav-brand{display:none;font-size:17px;font-weight:500;text-transform:lowercase;color:var(--graphite)}
.floating-nav-cta{display:inline-flex;align-items:center;justify-content:center;height:44px;padding:0 22px;border-radius:var(--r-pill);background:var(--accent);color:#fff!important;font-weight:500}
.floating-nav-cta:hover{background:var(--accent-dark)}

@media(max-width:1100px){
  .header-cta{display:none}
  .menu-toggle{display:inline-flex}
  .floating-nav{left:12px;right:12px;top:14px;transform:translate(0,-140%);justify-content:space-between;gap:10px;padding:8px 8px 8px 18px;border-radius:22px}
  .floating-nav.is-visible{transform:translate(0,0)}
  .floating-nav.menu-is-open{border-bottom-left-radius:0;border-bottom-right-radius:0;box-shadow:none}
  .floating-nav-brand{display:inline-flex}
  .floating-nav>a:not(.floating-nav-brand){display:none}
  .floating-nav .menu-toggle{background:var(--lightblue);box-shadow:none}

  .nav{
    position:fixed;left:12px;right:12px;top:78px;z-index:90;
    flex-direction:column;align-items:stretch;gap:4px;
    padding:14px;border-radius:22px;background:#fff;
    box-shadow:0 24px 48px rgba(15,23,42,.2);
    opacity:0;visibility:hidden;transform:translateY(-8px);
    transition:opacity .25s ease,transform .25s ease,visibility .25s,border-radius .2s ease;
  }
  .nav.is-open{opacity:1;visibility:visible;transform:translateY(0)}
  .nav.is-connected{border-top-left-radius:0;border-top-right-radius:0}
  .nav a{padding:12px 14px;border-radius:14px;font-size:16px;color:var(--ink)}
  .nav a::after{display:none}
  .nav a:hover{color:var(--accent);background:rgba(12,23,41,.05)}
  .nav-cta{display:inline-flex;align-items:center;justify-content:center;min-height:46px;margin-top:6px;border-radius:var(--r-pill);background:var(--accent);color:#fff!important;font-weight:500}
  .nav a.nav-cta:hover{background:var(--accent);filter:brightness(1.08)}
}

/* ============================================================
   Hero — Blok 1 (x67 y126, 1307x818, r50)
   ============================================================ */
.hero{padding:37px var(--pad-wide) 0}
.hero-card{
  position:relative;overflow:hidden;
  max-width:var(--w-wide);margin:0 auto;
  background:linear-gradient(to bottom right,var(--navy-a),var(--navy-b));
  border-radius:var(--r-hero);
  padding:72px 51px 77px;
  color:var(--offwhite);
}
.hero-visual{position:absolute;left:55.93%;top:5.26%;width:45.29%;pointer-events:none}
.hero-copy{position:relative;z-index:1;max-width:640px}
.hero-eyebrow{font-size:18px;font-weight:500;line-height:1.2;margin-bottom:44px}
/* Penpot sets 558px on the title, but that box was measured in SF Pro.
   Inter runs slightly wider, so the third line needs a little more room
   to stay on one line — clamps back down on narrow screens. */
.hero-title{font-size:clamp(38px,3.9vw,55px);line-height:1.2;font-weight:500;margin-bottom:45px;max-width:640px}
.hero-lead{font-size:22px;line-height:1.2;font-weight:400;max-width:454px;margin-bottom:48px}
.hero-actions{display:flex;gap:29px;flex-wrap:wrap;margin-bottom:89px}

.hero-bottom{position:relative;z-index:1;display:flex;align-items:flex-end;justify-content:space-between;gap:32px;flex-wrap:wrap}
.hero-stats{display:flex;gap:43px}
.hero-stats strong{display:block;font-size:22px;font-weight:500;line-height:1.2;margin-bottom:9px}
.hero-stats span{font-size:17px;font-weight:400;line-height:1.2;color:var(--muted)}
.hero-rating{display:flex;gap:10px;align-items:center;flex-wrap:wrap;font-size:17px;font-weight:400;margin-right:77px}
.hero-rating b{font-weight:700}
.stars{color:var(--star);letter-spacing:2px}

@media(max-width:1100px){
  .hero-card{padding:56px 32px 60px}
  .hero-visual{position:static;width:100%;max-width:480px;margin:32px auto 0}
  .hero-copy{max-width:none}
  .hero-title{font-size:clamp(38px,5vw,55px)}
  .hero-actions{margin-bottom:48px}
  .hero-rating{margin-right:0}
}
@media(max-width:760px){
  .hero{padding:24px 16px 0}
  .hero-card{padding:40px 22px;border-radius:32px}
  /* the visual needs the width to read — drop it on phones */
  .hero-visual{display:none}
  .hero-eyebrow{margin-bottom:24px}
  .hero-title{font-size:clamp(32px,8vw,42px);margin-bottom:24px}
  .hero-lead{font-size:19px;margin-bottom:28px}
  .hero-actions{flex-direction:column;gap:14px}
  .hero-actions .btn{width:100%}
  .hero-stats{flex-wrap:wrap;row-gap:16px;gap:24px}
}

/* ============================================================
   Chips — block1.1 (x66 y969, 1308x60): 3 equal pills, gap 25
   ============================================================ */
.chips{padding:25px var(--pad-wide) 0}
.chips-row{max-width:var(--w-wide);margin:0 auto;display:flex;gap:25px}
.chip{flex:1 1 0;min-width:0;height:60px;display:flex;align-items:center;justify-content:center;text-align:center;background:var(--offwhite);color:var(--muted);font-weight:500;font-size:17px;line-height:1.2;border-radius:var(--r-pill);padding:0 10px}

@media(max-width:1100px){
  .chips-row{gap:14px}
  .chip{height:54px;font-size:15px}
}
@media(max-width:760px){
  /* stays a single row on phones — pills shrink instead of stacking */
  .chips{padding:16px 16px 0}
  .chips-row{gap:8px}
  .chip{height:44px;font-size:13px;padding:0 6px}
}
@media(max-width:390px){
  .chips-row{gap:6px}
  .chip{height:40px;font-size:12px;padding:0 4px}
}

/* ============================================================
   Orbit — Blok2 (x67 y1096, 1307x1119)
   Stage box = Group 2338 (1307x739). The big #eaf4ff wash and the
   3 rings are baked into one exported PNG, positioned at the
   Ellipse 33 footprint (1119x1119, 114px in, starting at block top).
   ============================================================ */
/* bottom padding used to reserve the full 112px overhang of the background
   circle; the next section now overlaps it instead (see .website-card z-index) */
/* bottom padding = the 112px the circle hangs below the cards + breathing room */
.orbit{padding:110px var(--pad-wide) 152px}
.orbit-head{max-width:852px;margin:0 auto 52px;text-align:center;position:relative;z-index:1}
.orbit-head h2{font-size:clamp(28px,2.5vw,35px);line-height:1;font-weight:500;color:var(--ink);margin-bottom:25px}
.orbit-head p{max-width:523px;margin:0 auto;font-size:clamp(18px,1.8vw,25px);line-height:1.5;font-weight:400;color:var(--muted)}

.orbit-stage{position:relative;max-width:var(--w-wide);margin:0 auto;aspect-ratio:1307/739}
/* Group 2352 is 1119x1119 at board (181, 1096). The PNG is a 1:1 export
   padded by 145/150px of glow bleed to 1409x1419, so the canvas is drawn at
   1409px and offset by that bleed to put the circle on its real coordinates. */
.orbit-bg{position:absolute;left:-2.37%;top:-56.56%;width:107.80%;aspect-ratio:1409/1419;z-index:0;pointer-events:none}
.orbit-bg img{width:100%;height:100%;object-fit:contain}


.orbit-card{position:absolute;z-index:2;width:24.10%;min-height:21.52%;background:var(--offwhite);border-radius:var(--r-card);padding:28px 26px}
.orbit-card h3{font-size:25px;font-weight:400;line-height:1.2;color:var(--ink);margin-bottom:9px}
.orbit-card p{font-size:17px;font-weight:400;line-height:1.5;color:var(--ink)}

.orbit-card--a{left:37.95%;top:0}
.orbit-card--b{left:75.90%;top:18.00%}
.orbit-card--c{left:68.10%;top:61.84%}
.orbit-card--d{left:7.80%;top:61.84%}
.orbit-card--e{left:0;top:18.00%}

@media(max-width:1180px){
  .orbit-card h3{font-size:clamp(18px,2vw,25px)}
  .orbit-card p{font-size:clamp(13px,1.4vw,17px)}
  .orbit-card{padding:clamp(14px,2vw,28px) clamp(14px,2vw,26px)}
}
@media(max-width:1100px){
  .orbit{padding:64px var(--pad-wide)}
  .orbit-head{margin-bottom:32px}
  .orbit-stage{aspect-ratio:auto;display:grid;grid-template-columns:1fr;gap:16px;max-width:520px}
  .orbit-bg{display:none}
  .orbit-card{position:relative;left:auto!important;top:auto!important;width:100%;min-height:0;padding:24px 26px}
  .orbit-card h3{font-size:22px}
  .orbit-card p{font-size:16px}
}

/* ============================================================
   Website / $49 — Blok6 (x158 y4385, 1156x773, r50, #fcfdfe)
   ============================================================ */
.website{padding:24px var(--pad) 48px}
/* stays above the orbit background circle that overhangs from the section above */
.website-card{position:relative;z-index:1;max-width:var(--w-narrow);margin:0 auto;background:var(--offwhite);border-radius:var(--r-hero);padding:70px 50px}
.website-layout{display:grid;grid-template-columns:532fr 450fr;gap:74px;align-items:start}
.website-copy{padding-top:23px}
.website-eyebrow{font-size:17px;font-weight:500;line-height:1.2;color:var(--ink);margin-bottom:24px}
.website-title{font-size:clamp(28px,2.5vw,35px);line-height:1.07;font-weight:500;color:var(--ink);max-width:429px;margin-bottom:27px}
.website-lead{font-size:22px;line-height:1.2;font-weight:400;color:var(--ink);max-width:507px;margin-bottom:27px}
.website-checklist{display:flex;flex-direction:column;align-items:flex-start;gap:10px;margin-bottom:31px}
.website-checklist li{display:inline-flex;align-items:center;gap:10px;height:45px;padding:0 20px;background:var(--offwhite);border:1px solid var(--line);border-radius:var(--r-pill);color:var(--muted);font-size:17px;font-weight:500;line-height:1.2}
.website-actions{display:flex;gap:13px}
.website-actions .btn{flex:1 1 0;min-width:0;max-width:260px;padding:0}
/* no outline on the light card — the border only reads well on the dark blocks */
.website-actions .btn--ghost{border-color:transparent}

/* ===== Portfolio slider (logic + markup ported from roofing) ===== */
.site-slider{position:relative;width:100%;aspect-ratio:450/633;border-radius:var(--r-card);overflow:hidden;background:var(--bg)}
.site-slider-img{width:100%;height:100%;object-fit:cover;transition:transform .6s cubic-bezier(.16,1,.3,1)}
.site-slider:hover .site-slider-img{transform:scale(1.04)}

.slider-arrow{position:absolute;z-index:2;top:42.8%;width:37px;height:39px;padding:0;background-color:transparent;background-repeat:no-repeat;background-size:contain;background-position:center;transition:opacity .2s ease}
.slider-arrow--prev{left:22px;background-image:url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzciIGhlaWdodD0iMzkiIHZpZXdCb3g9IjAgMCAzNyAzOSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE4LjI2OTUgMzguNTMxMkMyOC4zNTkyIDM4LjUzMTEgMzYuNTM4MSAzMC4zNTE0IDM2LjUzODEgMjAuMjYxN1YxOC4yNjg2QzM2LjUzNzggOC4xNzkwNSAyOC4zNTkxIDAuMDAwMTY0MDMyIDE4LjI2OTUgMEM4LjE3OTg3IDAgMC4wMDAyNTEwMzEgOC4xNzg5NSAwIDE4LjI2ODZMMCAyMC4yNjE3QzAgMzAuMzUxNSA4LjE3OTcyIDM4LjUzMTIgMTguMjY5NSAzOC41MzEyWiIgZmlsbD0iI0U1RUFFRiIvPgo8cGF0aCBkPSJNMjAuNjQ0MiAxMy4xMDAxTDE1LjU4MyAxOC4wNTYxQzE0Ljg1MTQgMTguNzcyNiAxNC44NTE0IDE5Ljk1MDMgMTUuNTgzIDIwLjY2NjhMMjAuNjQ0MiAyNS42MjI4IiBzdHJva2U9IiMwRjE3MkEiIHN0cm9rZS13aWR0aD0iMi43NDAzOCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIi8+Cjwvc3ZnPgo=")}
.slider-arrow--prev.is-active{background-image:url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzciIGhlaWdodD0iMzkiIHZpZXdCb3g9IjAgMCAzNyAzOSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE4LjI2ODYgMS41OTcxN2UtMDZDOC4xNzg4NyAwLjAwMDE2MzMwNSA3LjE1MTAyZS0wNyA4LjE3OTgyIDEuNTk3MTdlLTA2IDE4LjI2OTVMMS43NzE0MmUtMDYgMjAuMjYyN0MwLjAwMDI1NDQyMyAzMC4zNTIyIDguMTc5MDMgMzguNTMxMSAxOC4yNjg2IDM4LjUzMTNDMjguMzU4MiAzOC41MzEzIDM2LjUzNzggMzAuMzUyMyAzNi41MzgxIDIwLjI2MjdMMzYuNTM4MSAxOC4yNjk1QzM2LjUzODEgOC4xNzk3MiAyOC4zNTg0IDcuMTUwOTNlLTA3IDE4LjI2ODYgMS41OTcxN2UtMDZaIiBmaWxsPSIjMEYxNzJBIi8+CjxwYXRoIGQ9Ik0yMC42NDQyIDEzLjEwMDFMMTUuNTgzIDE4LjA1NjFDMTQuODUxNCAxOC43NzI2IDE0Ljg1MTQgMTkuOTUwMyAxNS41ODMgMjAuNjY2OEwyMC42NDQyIDI1LjYyMjgiIHN0cm9rZT0iI0ZDRkRGRSIgc3Ryb2tlLXdpZHRoPSIyLjc0MDM4IiBzdHJva2UtbGluZWNhcD0icm91bmQiLz4KPC9zdmc+Cg==")}
.slider-arrow--next{right:22px;background-image:url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzciIGhlaWdodD0iMzkiIHZpZXdCb3g9IjAgMCAzNyAzOSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE4LjI2ODYgMS41OTcxN2UtMDZDOC4xNzg4NyAwLjAwMDE2MzMwNSA3LjE1MTAyZS0wNyA4LjE3OTgyIDEuNTk3MTdlLTA2IDE4LjI2OTVMMS43NzE0MmUtMDYgMjAuMjYyN0MwLjAwMDI1NDQyMyAzMC4zNTIyIDguMTc5MDMgMzguNTMxMSAxOC4yNjg2IDM4LjUzMTNDMjguMzU4MiAzOC41MzEzIDM2LjUzNzggMzAuMzUyMyAzNi41MzgxIDIwLjI2MjdMMzYuNTM4MSAxOC4yNjk1QzM2LjUzODEgOC4xNzk3MiAyOC4zNTg0IDcuMTUwOTNlLTA3IDE4LjI2ODYgMS41OTcxN2UtMDZaIiBmaWxsPSIjMEYxNzJBIi8+CjxwYXRoIGQ9Ik0xNS44OTU4IDI1LjQzMTJMMjAuOTU3IDIwLjQ3NTFDMjEuNjg4NyAxOS43NTg3IDIxLjY4ODcgMTguNTgwOSAyMC45NTcgMTcuODY0NUwxNS44OTU4IDEyLjkwODQiIHN0cm9rZT0iI0ZDRkRGRSIgc3Ryb2tlLXdpZHRoPSIyLjc0MDM4IiBzdHJva2UtbGluZWNhcD0icm91bmQiLz4KPC9zdmc+Cg==")}

.slider-dots{position:absolute;z-index:2;left:50%;bottom:13px;transform:translateX(-50%);display:flex;align-items:center;justify-content:center;gap:5px;height:35px;padding:0 19px;border-radius:var(--r-pill);background:var(--offwhite)}
.slider-dots button{width:25px;height:5px;padding:0;border-radius:999px;background:var(--dot-idle);transition:background-color .25s ease}
.slider-dots button.is-active{background:var(--ink)}

@media(max-width:1100px){
  .website-card{padding:48px 28px;border-radius:32px}
  .website-layout{grid-template-columns:1fr;gap:36px}
  .website-copy{padding-top:0;order:2}
  .website-visual{order:1;max-width:450px;margin:0 auto;width:100%}
}
@media(max-width:760px){
  .website{padding:56px 16px}
  /* pills are auto-width by design, but the longest labels are wider than a
     phone screen — let them wrap instead of pushing the card sideways */
  .website-checklist{align-self:stretch}
  .website-checklist li{height:auto;min-height:45px;max-width:100%;padding:11px 18px;font-size:15px;line-height:1.3;align-items:flex-start}
  .website-checklist .check-dot{margin-top:1px}
  .website-actions{flex-direction:column}
  .website-actions .btn{width:100%;max-width:none;flex:none;padding:0 24px}
  .slider-arrow{width:30px;height:32px;left:12px}
  .slider-arrow--next{left:auto;right:12px}
}

/* ============================================================
   Social — Blok4 (x160 y2978, 1156x709, r50, #080c39)
   ============================================================ */
.social{padding:48px var(--pad)}
.social-card{max-width:var(--w-narrow);margin:0 auto;background:var(--navy-a);border-radius:var(--r-hero);padding:41px 37px;display:grid;grid-template-columns:435fr 599fr;gap:47px;align-items:center;overflow:hidden}
.social-visual img{width:100%;height:auto}
.social-eyebrow{font-size:17px;font-weight:500;line-height:1.2;color:var(--offwhite);opacity:.5;margin-bottom:26px}
.social-title{font-size:clamp(28px,2.5vw,35px);line-height:1;font-weight:500;color:var(--offwhite);max-width:540px;margin-bottom:30px}
.social-lead{font-size:22px;line-height:1.2;font-weight:400;color:var(--offwhite);opacity:.5;max-width:507px;margin-bottom:29px}
.social-features{display:grid;grid-template-columns:1fr 1fr;gap:26px 39px;margin-bottom:42px}
.social-features div{background:var(--card-dark);border-radius:var(--r-card);padding:19px 26px;overflow:hidden}
.social-features h4{font-size:17px;font-weight:500;line-height:1.2;color:#fff;margin-bottom:15px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.social-features p{font-size:15px;font-weight:400;line-height:1.2;color:#fff;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
/* Penpot: both buttons are 292.3px wide with a 14px gap — equal, not auto-width */
.social-actions{display:flex;gap:14px}
.social-actions .btn{flex:1 1 0;min-width:0;max-width:293px;padding:0}

@media(max-width:1100px){
  .social-card{grid-template-columns:1fr;gap:32px}
  .social-visual{order:-1;max-width:435px;margin:0 auto}
  .social-features h4,.social-features p{white-space:normal}
}
@media(max-width:760px){
  .social{padding:56px 16px}
  .social-card{padding:32px 22px;border-radius:32px}
  /* the visual only reads well side-by-side — drop it on phones */
  .social-visual{display:none}
  .social-features{grid-template-columns:1fr;gap:14px}
  .social-actions{flex-direction:column}
  .social-actions .btn{width:100%;max-width:none;flex:none;padding:0 24px}
}

/* ============================================================
   Process — Blok5 (x159 y3766, 1156x567)
   ============================================================ */
.process{padding:48px var(--pad)}
.section-head{max-width:852px;margin:0 auto 27px;text-align:center}
.section-head h2{font-size:clamp(28px,2.5vw,35px);line-height:1;font-weight:500;color:var(--ink);margin-bottom:25px}
.section-head p{max-width:523px;margin:0 auto;font-size:clamp(18px,1.8vw,25px);line-height:1.5;font-weight:400;color:var(--muted)}

.process-grid{max-width:var(--w-narrow);margin:0 auto 25px;display:grid;grid-template-columns:repeat(3,1fr);gap:25px}
.process-card{background:var(--offwhite);border-radius:var(--r-card);padding:28px 20px;min-height:215px}
.process-step{display:block;font-size:15px;font-weight:400;line-height:2;color:var(--accent);margin-bottom:10px}
.process-step b{font-weight:700}
/* 25px per the mockup; the longest title ("Tell us about your business") only
   clears the 368px card if the tracking is tightened a touch */
.process-card h3{font-size:25px;font-weight:400;line-height:1.2;letter-spacing:-.02em;color:var(--ink);margin-bottom:32px}
.process-card p{font-size:17px;font-weight:400;line-height:1.5;color:var(--ink)}

.process-banner{max-width:var(--w-narrow);margin:0 auto;min-height:127px;background:linear-gradient(90deg,#b6caf5,#5f90f1);border-radius:var(--r-card);padding:33px 24px;display:flex;align-items:center;justify-content:center;gap:32px;flex-wrap:wrap}
.process-banner-pill{display:inline-flex;align-items:center;justify-content:center;gap:10px;width:235px;height:60px;background:var(--offwhite);color:var(--ink);border-radius:var(--r-pill);font-size:17px;font-weight:400;flex:none}
.process-banner p{max-width:295px;color:#fff;font-size:17px;font-weight:400;line-height:1.5}

/* wider than the shared 523px so the lead sits on two lines, not three */
.process .section-head p{max-width:580px}

/* at full layout width the three titles are guaranteed one line */
@media(min-width:1160px){.process-card h3{white-space:nowrap}}
@media(max-width:1100px){.process-grid{grid-template-columns:1fr 1fr}}
@media(max-width:760px){
  .process{padding:56px 16px}
  .process-grid{grid-template-columns:1fr}
  .process-card p br,.process .section-head p br{display:none}
  .process .section-head p{max-width:none}
  .process-banner{flex-direction:column;align-items:flex-start;text-align:left;padding:28px 22px}
  .process-banner-pill{width:100%}
  .process-banner p{max-width:none}
}

/* ============================================================
   Solutions — Blok3 (x160 y2305, 1155x625): 6 cards, 2 rows of 3
   ============================================================ */
.solutions{padding:48px var(--pad)}
.solutions-grid{max-width:var(--w-narrow);margin:0 auto;display:grid;grid-template-columns:repeat(3,1fr);gap:25px}
.solutions-card{background:var(--offwhite);border-radius:var(--r-card);padding:28px 25px;min-height:200px}
.solutions-card h3{font-size:25px;font-weight:400;line-height:1.2;color:var(--ink);margin-bottom:20px}
.solutions-card p{font-size:17px;font-weight:400;line-height:1.5;color:var(--ink)}

@media(max-width:1100px){.solutions-grid{grid-template-columns:1fr 1fr}}
@media(max-width:760px){
  .solutions{padding:56px 16px 80px}
  .solutions-grid{grid-template-columns:1fr}
  .solutions-card{min-height:0}
}

/* ============================================================
   Pricing — new block, built on the same tokens as the Penpot
   blocks (1156px column, r25 cards, #fcfdfe, accent #608fff).
   ============================================================ */
.pricing{padding:48px var(--pad)}
.pricing .section-head{margin-bottom:32px}
/* wider than the shared 523px so the lead sits on two lines, not three */
.pricing .section-head p{max-width:700px}

/* one row: category tabs pinned left, billing switch pinned right */
.pricing-controls{max-width:var(--w-narrow);margin:0 auto 32px;display:flex;align-items:center;justify-content:space-between;gap:20px;flex-wrap:wrap}

.pricing-switch{display:inline-flex;gap:4px;padding:5px;border-radius:var(--r-pill);background:var(--lightblue)}
.pricing-tab{height:46px;padding:0 28px;border-radius:var(--r-pill);font-size:17px;font-weight:500;color:var(--muted);background:transparent;transition:background-color .25s ease,color .25s ease,box-shadow .25s ease}
.pricing-tab:hover{color:var(--ink)}
.pricing-tab.is-active{background:var(--offwhite);color:var(--ink);font-weight:700;box-shadow:0 4px 14px rgba(15,23,42,.08)}

.pricing-panel[hidden]{display:none}

.pricing-grid{max-width:var(--w-narrow);margin:0 auto;display:grid;grid-template-columns:repeat(3,1fr);gap:20px;align-items:stretch}

.plan{position:relative;display:flex;flex-direction:column;background:var(--offwhite);border:1px solid var(--line);border-radius:var(--r-card);padding:30px 26px}
.plan--featured{border:2px solid var(--accent);box-shadow:0 24px 50px rgba(96,143,255,.22)}
.plan-badge{position:absolute;top:26px;right:24px;display:inline-flex;align-items:center;height:28px;padding:0 14px;border-radius:var(--r-pill);background:var(--lightblue);color:var(--accent);font-size:12px;font-weight:700;letter-spacing:.06em;text-transform:uppercase}
.plan-tier{font-size:13px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--accent);margin-bottom:14px}
.plan-name{font-size:25px;font-weight:500;line-height:1.2;color:var(--ink);margin-bottom:22px}
.plan-price{display:flex;align-items:baseline;gap:6px;margin-bottom:8px}
.plan-price strong{font-size:44px;font-weight:700;line-height:1;color:var(--ink);letter-spacing:-.02em}
.plan-price span{font-size:17px;font-weight:400;color:var(--muted)}
.plan-note{font-size:15px;font-weight:400;line-height:1.4;color:var(--muted);margin-bottom:26px}

.plan-list{display:flex;flex-direction:column;gap:14px;margin-bottom:30px}
.plan-list li{display:flex;align-items:flex-start;gap:10px;font-size:17px;font-weight:400;line-height:1.4;color:var(--ink)}
.tick{flex:none;width:20px;height:20px;margin-top:1px;border-radius:50%;background:var(--lightblue);color:var(--accent);display:inline-flex;align-items:center;justify-content:center}
.tick svg{width:10px;height:8px;display:block}

.plan-cta{margin-top:auto;width:100%}

/* full-width fourth card: info left, features in two columns, CTA right */
.plan--wide{grid-column:1 / -1;flex-direction:row;align-items:center;gap:40px}
.plan--wide .plan-head{flex:0 0 250px}
.plan--wide .plan-name{margin-bottom:18px}
.plan--wide .plan-note{margin-bottom:0}
.plan--wide .plan-list{flex:1 1 auto;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px 32px;margin-bottom:0}
.plan--wide .plan-cta{flex:0 0 auto;margin-top:0;width:auto;min-width:220px;padding:0 30px}
.btn--outline{background:transparent;border:1px solid var(--line);color:var(--ink)}
.btn--outline:hover{border-color:var(--accent);color:var(--accent);background:rgba(96,143,255,.06)}

.pricing-panel--empty{text-align:center}
.pricing-placeholder{max-width:560px;margin:0 auto;padding:48px 24px;border:1px dashed var(--line);border-radius:var(--r-card);font-size:17px;line-height:1.5;color:var(--muted)}
.pricing-placeholder a{color:var(--accent);font-weight:500}
.pricing-placeholder a:hover{color:var(--accent-dark)}

.pricing-footnote{max-width:var(--w-narrow);margin:32px auto 0;text-align:center;font-size:15px;line-height:1.5;color:var(--muted)}

@media(max-width:1100px){
  .pricing-grid{grid-template-columns:repeat(2,1fr)}
  .plan-price strong{font-size:38px}
  .plan--wide{flex-direction:column;align-items:stretch;gap:24px}
  .plan--wide .plan-head{flex:none}
  .plan--wide .plan-cta{width:100%;min-width:0}
}
@media(max-width:760px){
  .pricing{padding:0 16px 80px}
  .pricing .section-head p{max-width:none}
  .pricing .section-head p br{display:none}
  .pricing-controls{flex-direction:column;align-items:stretch;gap:12px;margin-bottom:28px}
  .pricing-switch{width:100%}
  .pricing-tab{flex:1;padding:0 12px;font-size:15px}
  .pricing-grid{grid-template-columns:1fr}
  .plan{padding:26px 22px}
  .plan--wide .plan-list{grid-template-columns:1fr}
}

/* ============================================================
   Lead capture — reuses the Blok4 card shell (1156px, r50,
   #080c39, padding 41/37) with copy left + form card right.
   ============================================================ */
.lead{padding:48px var(--pad) 80px}
/* left column splits into copy (top) and author row (bottom); the form spans
   both rows so the author lines up with the bottom of the form card */
.lead-card{max-width:var(--w-narrow);margin:0 auto;background:var(--navy-a);border-radius:var(--r-hero);padding:41px 37px;display:grid;grid-template-columns:1fr 1.15fr;grid-template-rows:1fr auto;gap:47px 47px;align-items:stretch;overflow:hidden}
.lead-copy{grid-column:1;grid-row:1}
.lead-form-card{grid-column:2;grid-row:1 / 3}
.lead-eyebrow{font-size:15px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--accent);margin-bottom:22px}
/* line breaks are set with <br> in the markup; they collapse on mobile */
.lead-title{font-size:clamp(28px,2.5vw,35px);line-height:1.15;font-weight:500;color:var(--offwhite);margin-bottom:20px}
.lead-text{font-size:22px;line-height:1.2;font-weight:400;color:var(--offwhite);opacity:.5}

.lead-author{grid-column:1;grid-row:2;align-self:end;display:flex;align-items:center;gap:16px;flex-wrap:wrap}
.lead-avatar{width:56px;height:56px;flex:none;border-radius:var(--r-card);background:var(--card-dark);color:var(--offwhite);display:inline-flex;align-items:center;justify-content:center;font-size:17px;font-weight:500;letter-spacing:.04em}
.lead-person{display:flex;flex-direction:column;gap:2px}
.lead-person b{font-size:17px;font-weight:500;color:var(--offwhite)}
.lead-person small{font-size:15px;font-weight:400;color:var(--offwhite);opacity:.5}
.lead-call{margin-left:auto}

/* white form card */
.lead-form-card{background:var(--offwhite);border-radius:var(--r-card);padding:28px 26px}
.lead-form-eyebrow{font-size:13px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--accent);margin-bottom:8px}
.lead-form-title{font-size:25px;font-weight:500;line-height:1.2;color:var(--ink);margin-bottom:4px}
.lead-form-note{font-size:15px;font-weight:400;color:var(--muted);margin-bottom:18px}

.lead-form{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.field{display:flex;flex-direction:column;gap:6px;min-width:0}
.field[hidden]{display:none}
.field--full{grid-column:1 / -1}
.field label{font-size:15px;font-weight:500;color:var(--ink)}
.field .req{color:var(--accent)}
.field .opt{font-weight:400;color:var(--muted)}

.field input,
.field select{
  height:48px;padding:0 16px;width:100%;
  font-family:var(--font);font-size:16px;font-weight:400;color:var(--ink);
  background:#fff;border:1px solid var(--line);border-radius:14px;
  transition:border-color .2s ease,box-shadow .2s ease;
}
.field select{
  appearance:none;-webkit-appearance:none;padding-right:44px;cursor:pointer;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1.5L6 6.5L11 1.5' stroke='%23858697' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat:no-repeat;background-position:right 16px center;
}
.field input::placeholder{color:var(--muted)}
.field select:invalid,.field select option[value=""]{color:var(--muted)}
.field input:hover,.field select:hover{border-color:#b9c3d4}
.field input:focus,.field select:focus{outline:none;border-color:var(--accent);box-shadow:0 0 0 4px rgba(96,143,255,.18)}

/* same size as every other .btn--lg on the site (60px, 34px side padding) */
.lead-submit{grid-column:1 / -1;width:100%;height:60px;justify-content:space-between;padding:0 34px;margin-top:6px}
.lead-submit svg{width:20px;height:14px;flex:none}
.lead-status{grid-column:1 / -1;margin:0;font-size:15px;line-height:1.4;color:var(--muted);min-height:0}
.lead-status.is-error{color:#d9534f}

@media(max-width:1100px){
  /* stacked order: copy → form → author row */
  .lead-card{grid-template-columns:1fr;grid-template-rows:none;gap:32px}
  .lead-copy,.lead-author,.lead-form-card{grid-column:auto;grid-row:auto}
  .lead-copy{order:1}
  .lead-form-card{order:2}
  .lead-author{order:3}
  .lead-text{max-width:none}
  .lead-call{margin-left:0;width:100%}
}
@media(max-width:760px){
  .lead{padding:0 16px 80px}
  .lead-card{padding:28px 20px;border-radius:32px}
  .lead-title br{display:none}
  .lead-text{font-size:19px;max-width:none;margin-bottom:28px}
  .lead-form-card{padding:26px 20px}
  .lead-form{grid-template-columns:1fr}
  .lead-author{gap:12px}
}

/* ============================================================
   Footer — ported from the roofing project, restyled with the
   Penpot tokens (1156px column, #cfd6e2 hairline, muted links).
   ============================================================ */
.site-footer{border-top:1px solid var(--line);padding:36px var(--pad) 40px}
.site-footer-inner{max-width:var(--w-narrow);margin:0 auto}
.footer-top{display:flex;align-items:center;justify-content:space-between;gap:20px;flex-wrap:wrap}
.footer-brand{font-size:22px}
.footer-brand .logo-mark{width:40px;height:28px}
.footer-nav{display:flex;align-items:center;gap:28px;flex-wrap:wrap}
.footer-nav a{color:var(--muted);font-size:15px;transition:color .25s ease}
.footer-nav a:hover{color:var(--accent)}
.footer-copy{margin-top:24px;color:var(--muted);opacity:.75;font-size:14px}

@media(max-width:760px){
  .site-footer{padding:28px 16px 32px}
  .footer-top{flex-direction:column;align-items:flex-start;gap:18px}
  .footer-nav{gap:18px}
}

/* ============================================================
   Calendly popup — restyled to match the site's cards
   ============================================================ */
.calendly-overlay{background:rgba(8,12,57,.55)!important}
.calendly-popup{position:relative;border-radius:var(--r-card);overflow:hidden;background-color:#fff;box-shadow:0 24px 48px rgba(15,23,42,.28)}
.calendly-popup-content{border-radius:var(--r-card);overflow:hidden;background-color:#fff}
.calendly-popup-close{
  position:absolute!important;top:16px!important;right:16px!important;left:auto!important;bottom:auto!important;
  z-index:5;width:40px!important;height:40px!important;
  display:flex!important;align-items:center;justify-content:center;
  border-radius:14px!important;background-color:var(--ink)!important;
  background-repeat:no-repeat!important;background-position:center!important;background-size:12px!important;
  box-shadow:0 6px 16px rgba(15,23,42,.12);
  opacity:0;pointer-events:none;transition:background-color .2s ease,opacity .15s ease;
}
.calendly-popup-close.is-placed{opacity:1;pointer-events:auto}
.calendly-popup-close:hover{background-color:#1e2a4a!important}

/* ============================================================
   Booking + thank-you pages
   ============================================================ */
.booking-page{max-width:760px;margin:0 auto;padding:0 20px 56px}
.booking-embed{margin-top:22px;border-radius:var(--r-card);overflow:hidden;background:var(--offwhite);box-shadow:0 16px 40px rgba(12,23,41,.1)}
.booking-embed .calendly-inline-widget{min-width:280px!important;width:100%!important;height:720px!important}

.thanks-page{max-width:760px;margin:0 auto;padding:0 20px 72px;text-align:center}
.thanks-card{margin-top:40px;padding:56px 32px;background:var(--offwhite);border:1px solid var(--line);border-radius:var(--r-hero)}
.thanks-icon{width:64px;height:64px;margin:0 auto;display:grid;place-items:center;border-radius:50%;background:var(--lightblue);color:var(--accent)}
.thanks-icon svg{width:26px;height:26px}
.thanks-card h1{margin-top:26px;font-size:clamp(28px,5vw,35px);line-height:1.18;font-weight:500;color:var(--ink)}
.thanks-card p{max-width:460px;margin:14px auto 0;font-size:17px;line-height:1.5;color:var(--muted)}
.thanks-actions{margin-top:34px;display:flex;align-items:center;justify-content:center;gap:14px;flex-wrap:wrap}

@media(max-width:760px){
  .booking-page,.thanks-page{padding:0 16px 48px}
  .booking-embed .calendly-inline-widget{height:640px!important}
  .thanks-card{padding:40px 22px;border-radius:32px}
  .thanks-actions .btn{width:100%}
}

/* ============================================================
   Legal pages (privacy / terms / cookies) — ported from the
   roofing project, restyled with the Penpot tokens.
   ============================================================ */
.legal-page{max-width:760px;margin:0 auto;padding:0 20px 72px}
.legal-header{display:flex;align-items:center;justify-content:space-between;gap:20px;height:89px}
.legal-header .logo{font-size:22px}
.legal-header .logo-mark{width:40px;height:28px}
.legal-back{color:var(--muted);font-size:15px;transition:color .25s ease}
.legal-back:hover{color:var(--accent)}

.legal-intro h1{font-size:clamp(28px,5vw,35px);line-height:1.15;font-weight:500;color:var(--ink)}
.legal-updated{margin-top:10px;color:var(--muted);font-size:15px}

.legal-content{margin-top:40px}
.legal-content h2{margin-top:40px;font-size:25px;font-weight:500;line-height:1.2;color:var(--ink)}
.legal-content h2:first-child{margin-top:0}
.legal-content p{margin-top:14px;font-size:17px;line-height:1.6;color:var(--ink);opacity:.75}
.legal-content ul{margin-top:14px;padding-left:22px;list-style:disc;font-size:17px;line-height:1.6;color:var(--ink);opacity:.75}
.legal-content li{margin-top:8px}
.legal-content strong{font-weight:500}
.legal-content a{color:var(--accent);font-weight:500}
.legal-content a:hover{color:var(--accent-dark)}

.legal-table{width:100%;margin-top:16px;border-collapse:collapse;font-size:17px}
.legal-table th,.legal-table td{text-align:left;padding:12px 14px;border-bottom:1px solid var(--line);line-height:1.5}
.legal-table th{color:var(--ink);font-weight:500}
.legal-table td{color:var(--ink);opacity:.75}

.legal-note{margin-top:44px;padding:20px 24px;border:1px dashed var(--line);border-radius:var(--r-card);font-size:15px;line-height:1.5;color:var(--muted)}

@media(max-width:760px){
  .legal-page{padding:0 16px 56px}
  .legal-header{height:72px}
  .legal-content h2{font-size:22px;margin-top:32px}
  .legal-table{font-size:15px}
  .legal-table th,.legal-table td{padding:10px}
}

/* ============================================================
   Scroll reveal
   One motion for everything: a short rise with a hair of scale.
   Cards inside a group are staggered by --reveal-delay, which JS
   sets. Guarded by html.js so the page is fully readable without
   JavaScript, and switched off entirely for reduced motion.
   ============================================================ */
:where(html.js) .hero-card,
:where(html.js) .chip,
:where(html.js) .orbit-head,
:where(html.js) .orbit-bg,
:where(html.js) .orbit-card,
:where(html.js) .website-card,
:where(html.js) .social-card,
:where(html.js) .section-head,
:where(html.js) .process-card,
:where(html.js) .process-banner,
:where(html.js) .solutions-card,
:where(html.js) .pricing-controls,
:where(html.js) .plan,
:where(html.js) .lead-card,
:where(html.js) .site-footer{
  opacity:0;
  transform:translateY(22px) scale(.985);
  transition:opacity .72s cubic-bezier(.22,1,.36,1),transform .72s cubic-bezier(.22,1,.36,1);
  transition-delay:var(--reveal-delay,0ms);
}

/* the big circle only breathes open — no vertical travel */
:where(html.js) .orbit-bg{transform:scale(.94);transition-duration:1.1s}

:where(html.js) .is-revealed{opacity:1;transform:none}

@media(prefers-reduced-motion:reduce){
  :where(html.js) .hero-card,
  :where(html.js) .chip,
  :where(html.js) .orbit-head,
  :where(html.js) .orbit-bg,
  :where(html.js) .orbit-card,
  :where(html.js) .website-card,
  :where(html.js) .social-card,
  :where(html.js) .section-head,
  :where(html.js) .process-card,
  :where(html.js) .process-banner,
  :where(html.js) .solutions-card,
  :where(html.js) .pricing-controls,
  :where(html.js) .plan,
  :where(html.js) .lead-card,
  :where(html.js) .site-footer{opacity:1;transform:none;transition:none}

  *,*::before,*::after{animation-duration:.01ms!important;transition-duration:.01ms!important}
  html{scroll-behavior:auto}
}
