:root {
  --ink: #151515;
  --navy: #090a0b;
  --navy-2: #161719;
  --blue: #f2610b;
  --blue-bright: #ff7417;
  --cyan: #ff9a43;
  --ice: #fff1e7;
  --mist: #f4f3f1;
  --white: #fff;
  --muted: #686868;
  --line: rgba(28, 28, 28, 0.12);
  --shadow: 0 24px 70px rgba(16, 16, 16, 0.14);
  --radius: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 999; left: 16px; top: -80px; background: var(--white); color: var(--ink); padding: 10px 16px; border-radius: 8px; transition: top .2s; }
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 18px 0;
  color: var(--white);
  transition: background .25s, padding .25s, box-shadow .25s;
}
.site-header.scrolled { padding: 11px 0; background: rgba(8,8,9,.96); backdrop-filter: blur(16px); box-shadow: 0 8px 30px rgba(0,0,0,.26); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 12px; line-height: 1; }
.brand-logo { display: block; width: 205px; height: 58px; object-fit: cover; object-position: center; }
.brand-context { padding-left: 12px; color: #c4c4c4; border-left: 1px solid rgba(255,255,255,.18); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.brand-mark { display: grid; place-items: center; width: 42px; height: 42px; color: var(--blue-bright); }
.brand-mark svg { width: 100%; height: 100%; }
.brand-mark path:first-child { fill: currentColor; opacity: .16; stroke: currentColor; stroke-width: 2; }
.brand-mark path:last-child { fill: none; stroke: var(--white); stroke-width: 3.4; stroke-linecap: round; stroke-linejoin: round; }
.brand-text { display: grid; gap: 5px; }
.brand-text strong { font: 700 18px/1 "Space Grotesk", sans-serif; letter-spacing: .06em; }
.brand-text small { font-size: 8px; font-weight: 700; letter-spacing: .31em; color: #a9bad0; }
.site-nav { display: flex; align-items: center; gap: 34px; font-size: 13px; font-weight: 600; }
.site-nav > a:not(.button) { color: #cbd6e4; transition: color .2s; }
.site-nav > a:not(.button):hover { color: var(--white); }
.site-nav .nav-phone { color: var(--blue-bright); }
.nav-toggle { display: none; background: none; color: inherit; border: 0; padding: 10px; }
.nav-toggle span:not(.sr-only) { display: block; width: 24px; height: 2px; margin: 5px; background: currentColor; transition: transform .2s, opacity .2s; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 13px; border: 1px solid transparent; border-radius: 4px; padding: 14px 22px; font-weight: 800; line-height: 1.2; text-transform: uppercase; letter-spacing: .045em; cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s, border-color .2s; }
.button:hover { transform: translateY(-2px); }
.button-small { padding: 10px 17px; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); }
.button-primary { background: linear-gradient(135deg, #e94e00, var(--blue-bright)); color: var(--white); box-shadow: 0 12px 30px rgba(242,97,11,.28); }
.button-primary:hover { box-shadow: 0 15px 38px rgba(242,97,11,.4); }
.button-outline { color: var(--white); border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.05); }

.hero { position: relative; overflow: hidden; min-height: 820px; padding: 170px 0 0; color: var(--white); background: linear-gradient(135deg, #080809 0%, #111214 58%, #1a1a1b 100%); }
.hero::before { content: ""; position: absolute; inset: 0; opacity: .27; background-image: linear-gradient(30deg, rgba(242,97,11,.18) 12%, transparent 12.5%, transparent 87%, rgba(242,97,11,.18) 87.5%), linear-gradient(150deg, rgba(255,255,255,.07) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,.07) 87.5%), linear-gradient(30deg, rgba(242,97,11,.18) 12%, transparent 12.5%, transparent 87%, rgba(242,97,11,.18) 87.5%); background-size: 76px 132px; background-position: 0 0, 0 0, 38px 66px; mask-image: linear-gradient(90deg, black, transparent 46%); }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(2px); }
.hero-glow-one { width: 540px; height: 540px; right: -140px; top: 40px; background: radial-gradient(circle, rgba(242,97,11,.22), transparent 68%); }
.hero-glow-two { width: 420px; height: 420px; left: 26%; top: 45%; background: radial-gradient(circle, rgba(255,154,67,.08), transparent 68%); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 75px; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 18px; color: #ff9a43; font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow > span { width: 28px; height: 1px; background: currentColor; }
.eyebrow.dark { color: #e95708; }
.hero h1, .section h2 { margin: 0; font-family: "Space Grotesk", sans-serif; letter-spacing: -.045em; line-height: 1.06; }
.hero h1 { max-width: 690px; font-size: clamp(46px, 5.5vw, 78px); font-weight: 600; }
.hero h1 em { color: var(--blue-bright); font-style: normal; }
.hero-lead { max-width: 650px; margin: 28px 0 30px; color: #c4c4c4; font-size: 17px; line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 30px; }
.text-link { display: inline-flex; align-items: center; gap: 9px; color: #c9d6e6; font-size: 13px; font-weight: 700; }
.hero-points { display: flex; flex-wrap: wrap; gap: 18px 26px; margin: 38px 0 0; padding: 0; list-style: none; color: #aaa; font-size: 11px; font-weight: 600; }
.hero-points span { display: inline-grid; place-items: center; width: 18px; height: 18px; margin-right: 6px; border: 1px solid rgba(82,211,232,.38); border-radius: 50%; color: var(--cyan); font-size: 10px; }

.hero-visual { position: relative; min-height: 500px; display: grid; place-items: center; }
.hero-brand-watermark { position: absolute; z-index: 0; width: 460px; max-width: 92%; opacity: .12; filter: grayscale(.2); }
.orbit { position: absolute; border: 1px solid rgba(255,112,23,.18); border-radius: 50%; }
.orbit-one { width: 540px; height: 540px; }
.orbit-two { width: 420px; height: 420px; border-style: dashed; }
.device-card { position: relative; z-index: 2; width: min(100%, 430px); padding: 13px; border: 1px solid rgba(255,112,23,.3); border-radius: 16px; background: linear-gradient(160deg, rgba(255,255,255,.12), rgba(255,96,0,.035)); box-shadow: 0 35px 90px rgba(0,0,0,.48); backdrop-filter: blur(18px); transform: perspective(900px) rotateY(-4deg) rotateX(2deg); }
.device-topbar { display: flex; align-items: center; justify-content: space-between; padding: 10px 8px 16px; color: #becce0; font-size: 11px; }
.status-dot { display: inline-block; width: 7px; height: 7px; margin-right: 7px; border-radius: 50%; background: #58d6a9; box-shadow: 0 0 0 5px rgba(88,214,169,.1); }
.signal { font-size: 22px; color: var(--cyan); }
.property-view { position: relative; overflow: hidden; height: 255px; border-radius: 11px; background: #151617; }
.property-sky { position: absolute; inset: 0; background: radial-gradient(circle at 65% 20%, rgba(242,97,11,.28), transparent 22%), linear-gradient(180deg, #24272b 0%, #202327 64%, #111214 64%); }
.property-house { position: absolute; left: 17%; right: 12%; bottom: 30px; height: 130px; }
.roof { position: absolute; left: -7%; top: 0; width: 80%; height: 80px; background: #35373a; clip-path: polygon(48% 0, 100% 78%, 92% 100%, 0 100%); }
.wall { position: absolute; inset: 58px 5% 0 8%; background: linear-gradient(100deg, #333538, #4a4c4f); }
.window, .door { position: absolute; bottom: 14px; z-index: 2; background: #f3bb5f; box-shadow: 0 0 25px rgba(243,187,95,.22); }
.window { width: 38px; height: 35px; }
.window-one { left: 21%; }.window-two { left: 43%; }
.door { right: 21%; width: 34px; height: 63px; background: #1d1e20; box-shadow: none; }
.camera-zone { position: absolute; right: 10%; top: 16%; width: 74px; height: 74px; border: 1px solid rgba(82,211,232,.5); border-radius: 50%; animation: pulse 2.8s infinite; }
.camera-zone span { position: absolute; inset: 29px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 18px var(--cyan); }
.property-label { position: absolute; left: 14px; bottom: 11px; padding: 5px 9px; border-radius: 6px; color: #c8d5e5; background: rgba(4,11,22,.64); font-size: 9px; letter-spacing: .04em; }
.device-controls { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; padding-top: 10px; }
.device-controls button { display: grid; text-align: left; min-height: 92px; padding: 12px; color: var(--white); background: rgba(13,13,14,.84); border: 1px solid rgba(255,112,23,.14); border-radius: 9px; }
.device-controls strong { font-size: 10px; }.device-controls small { color: #758aa4; font-size: 8px; }
.control-icon { color: var(--blue-bright); font-size: 18px; }
.floating-card { position: absolute; z-index: 3; display: flex; align-items: center; gap: 10px; padding: 12px 15px; border: 1px solid rgba(255,112,23,.22); border-radius: 8px; background: rgba(15,15,16,.94); box-shadow: 0 15px 40px rgba(0,0,0,.34); }
.floating-card strong, .floating-card small { display: block; }.floating-card strong { font-size: 10px; }.floating-card small { margin-top: 2px; color: #8295ae; font-size: 8px; }
.alert-card { left: -5px; bottom: 68px; }.wifi-card { right: -38px; top: 64px; }
.floating-icon { display: grid; place-items: center; width: 27px; height: 27px; border-radius: 50%; color: #63e0b5; background: rgba(99,224,181,.12); }
.wifi-bars { display: flex; align-items: flex-end; gap: 3px; width: 28px; height: 28px; padding: 5px; border-radius: 8px; background: rgba(82,211,232,.1); }
.wifi-bars i { width: 4px; background: var(--cyan); border-radius: 2px; }.wifi-bars i:nth-child(1){height:6px}.wifi-bars i:nth-child(2){height:11px}.wifi-bars i:nth-child(3){height:16px}
.capability-strip { position: relative; z-index: 3; display: flex; align-items: center; justify-content: center; gap: 32px; height: 94px; margin-top: 86px; border-top: 1px solid rgba(255,255,255,.1); color: #8ea2bb; font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.capability-strip { scrollbar-width: none; }
.capability-strip::-webkit-scrollbar { display: none; }
.capability-strip i { width: 3px; height: 3px; border-radius: 50%; background: var(--blue-bright); }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(82,211,232,.03); } 50% { box-shadow: 0 0 0 14px rgba(82,211,232,.06); } }

.section { padding: 110px 0; }
.section h2 { font-size: clamp(38px, 4.4vw, 59px); font-weight: 600; }
.section-heading { display: grid; grid-template-columns: 1fr 360px; align-items: end; gap: 60px; margin-bottom: 52px; }
.section-heading > p { margin: 0 0 5px; color: var(--muted); }
.solutions-section { background: var(--mist); }
.solutions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.solution-card { position: relative; min-height: 315px; padding: 28px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); transition: transform .25s, box-shadow .25s, border-color .25s; }
.solution-card:hover { transform: translateY(-5px); border-color: rgba(242,97,11,.34); box-shadow: var(--shadow); }
.solution-card .card-icon { display: grid; place-items: center; width: 52px; height: 47px; margin-bottom: 38px; color: var(--blue); background: var(--ice); clip-path: polygon(25% 0,75% 0,100% 50%,75% 100%,25% 100%,0 50%); font: 700 20px/1 "Space Grotesk", sans-serif; }
.card-number { position: absolute; top: 30px; right: 28px; margin: 0; color: #b9c4d1; font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.solution-card h3 { margin: 0 0 13px; font: 600 21px/1.25 "Space Grotesk", sans-serif; letter-spacing: -.025em; }
.solution-card > p:not(.card-number), .solution-card > div > p { color: var(--muted); font-size: 13px; }
.solution-card > a { position: absolute; left: 28px; bottom: 25px; color: #d84c00; font-size: 11px; font-weight: 800; }
.solution-card > a span { margin-left: 7px; }
.featured-card { grid-column: span 2; display: grid; grid-template-columns: 84px 1fr; min-height: 345px; padding: 38px; color: var(--white); background: linear-gradient(140deg, #0b0b0c, #222224); border-color: transparent; overflow: hidden; }
.featured-card::after { content:""; position:absolute; width:380px; height:330px; right:-40px; bottom:-80px; opacity:.3; background-image: linear-gradient(30deg, rgba(242,97,11,.45) 12%, transparent 12.5%, transparent 87%, rgba(242,97,11,.45) 87.5%), linear-gradient(150deg, rgba(255,255,255,.15) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,.15) 87.5%); background-size:52px 90px; mask-image:linear-gradient(120deg,transparent,black); }
.featured-card .card-icon { position: relative; z-index: 2; color: var(--cyan); background: rgba(242,97,11,.14); }
.featured-card h3 { font-size: 31px; }.featured-card > div > p { max-width: 610px; color: #aebed1; }
.featured-card ul { display: flex; flex-wrap: wrap; gap: 8px 24px; padding: 8px 0 0; list-style: none; color: #cfdae8; font-size: 11px; }
.featured-card li::before { content: "•"; margin-right: 8px; color: var(--cyan); }

.partners-section { background: #f8f6f3; }
.partners-heading { display: grid; grid-template-columns: 1fr 400px; align-items: end; gap: 70px; margin-bottom: 48px; }
.partners-heading > p { margin: 0 0 5px; color: var(--muted); }
.partner-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.partner-card { position: relative; overflow: hidden; min-height: 270px; padding: 34px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); box-shadow: 0 18px 45px rgba(12,24,38,.06); }
.partner-card::after { content: ""; position: absolute; width: 150px; height: 150px; right: -78px; bottom: -82px; border: 1px solid rgba(242,97,11,.18); border-radius: 50%; box-shadow: 0 0 0 28px rgba(242,97,11,.035), 0 0 0 56px rgba(242,97,11,.025); }
.partner-role { color: #d84c00; font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.partner-logo { display: flex; align-items: center; height: 82px; margin: 28px 0 22px; }
.partner-logo img { display: block; max-width: 100%; max-height: 56px; width: auto; height: auto; }
.partner-logo-alarm img { width: min(100%, 285px); }
.partner-logo-becklar img { width: min(100%, 250px); }
.partner-card p { position: relative; z-index: 1; max-width: 450px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.equipment-note { margin: 24px 0 0; padding-left: 18px; color: #66717d; border-left: 3px solid var(--blue-bright); font-size: 11px; }
.equipment-note strong { color: var(--ink); }

.why-section { color: var(--white); background: var(--navy); }
.why-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 100px; align-items: center; }
.why-copy > p:not(.eyebrow) { max-width: 480px; margin: 26px 0 34px; color: #9eafc2; }
.benefit-list { border-top: 1px solid rgba(255,255,255,.12); }
.benefit-list article { display: grid; grid-template-columns: 50px 1fr; gap: 26px; padding: 29px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.benefit-number { color: var(--blue-bright); font: 600 11px/1 "Space Grotesk", sans-serif; }
.benefit-list h3 { margin: 0 0 8px; font: 600 19px/1.25 "Space Grotesk", sans-serif; }
.benefit-list p { margin: 0; color: #8fa2b8; font-size: 13px; }

.brand-moment { position: relative; overflow: hidden; padding: 72px 0; background: #070707; }
.brand-moment::before { content: ""; position: absolute; inset: 0; opacity: .2; background-image: linear-gradient(30deg, rgba(242,97,11,.2) 12%, transparent 12.5%, transparent 87%, rgba(242,97,11,.2) 87.5%), linear-gradient(150deg, rgba(255,255,255,.08) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,.08) 87.5%); background-size: 76px 132px; mask-image: linear-gradient(90deg, black, transparent 38%, transparent 62%, black); }
.brand-moment-frame { position: relative; z-index: 1; overflow: hidden; border: 1px solid rgba(255,112,23,.42); border-radius: 28px; background: #090909; box-shadow: 0 34px 85px rgba(0,0,0,.5), 0 0 55px rgba(242,97,11,.08); }
.brand-signature-art { display: block; width: 100%; height: auto; }
.brand-signature-mobile { display: none; }

.process-section { background: var(--white); }
.section-heading.centered { display: block; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.process-grid { position: relative; display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; margin-top: 50px; background: var(--line); }
.process-grid article { min-height: 245px; padding: 32px 28px; background: var(--white); }
.process-grid span { color: var(--blue); font: 700 11px/1 "Space Grotesk", sans-serif; letter-spacing: .1em; }
.process-grid h3 { margin: 42px 0 13px; font: 600 21px/1.2 "Space Grotesk", sans-serif; }
.process-grid p { margin: 0; color: var(--muted); font-size: 13px; }

.contact-section { color: var(--white); background: linear-gradient(140deg, #090909, #242425); }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: start; }
.contact-copy > p:not(.eyebrow) { max-width: 480px; color: #a8b8ca; }
.contact-channels { display: grid; gap: 15px; margin-top: 46px; }
.contact-channels a { display: grid; gap: 4px; }.contact-channels small { color: #7f94ad; font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }.contact-channels strong { font-size: 12px; color: #dbe7f5; }
.contact-form { padding: 36px; color: var(--ink); background: var(--white); border-radius: var(--radius); box-shadow: 0 30px 80px rgba(0,0,0,.25); }
.form-message { margin-bottom: 18px; padding: 12px 14px; border-radius: 8px; font-size: 12px; font-weight: 700; }
.form-message-success { color: #075d42; background: #dcf8ed; border: 1px solid #9be0c9; }
.form-message-error { color: #8b2431; background: #fff0f2; border: 1px solid #f2bac2; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: grid; gap: 7px; margin-bottom: 16px; color: #314157; font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid #d7e0e9; border-radius: 8px; padding: 12px 13px; color: var(--ink); background: #fbfcfe; outline: none; text-transform: none; resize: vertical; transition: border-color .2s, box-shadow .2s; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(242,97,11,.14); }
.form-submit { width: 100%; margin-top: 3px; border: 0; }
.form-note { margin: 12px 0 0; text-align: center; color: #7e8a99; font-size: 9px; }

.site-footer { padding: 70px 0 24px; color: #aaa; background: #050505; border-top: 3px solid #f2610b; }
.footer-grid { display: grid; grid-template-columns: 1.25fr .7fr 1fr .75fr; gap: 50px; padding-bottom: 52px; }
.footer-brand { color: var(--white); }.footer-grid > div:first-child > p { margin: 18px 0 0; font-size: 12px; }
.footer-links { display: grid; align-content: start; gap: 10px; font-size: 11px; }
.footer-links strong { margin-bottom: 8px; color: var(--white); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.08); font-size: 9px; }

.optional { color: #8a98a9; font-weight: 500; letter-spacing: 0; text-transform: none; }

/* Customer account */
.portal-body { min-height: 100vh; display: flex; flex-direction: column; background: #f4f3f1; }
.portal-shell { width: min(calc(100% - 40px), 1180px); margin-inline: auto; }
.portal-header { color: var(--white); background: var(--navy); border-bottom: 1px solid rgba(255,255,255,.09); }
.portal-header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.portal-nav { display: flex; align-items: center; gap: 28px; color: #bdcbdb; font-size: 12px; font-weight: 700; }
.portal-nav a:hover { color: var(--white); }
.portal-nav form { margin: 0; }
.portal-nav button { padding: 9px 14px; color: var(--white); background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.15); border-radius: 8px; cursor: pointer; }
.portal-main { flex: 1; padding-top: 54px; padding-bottom: 80px; }
.portal-messages { margin-bottom: 24px; }
.portal-welcome { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 32px; }
.portal-welcome h1, .portal-form-card h1, .login-card h1 { margin: 2px 0 8px; font: 600 clamp(34px, 4vw, 50px)/1.08 "Space Grotesk", sans-serif; letter-spacing: -.04em; }
.portal-welcome p:not(.portal-kicker), .portal-form-card .form-intro { margin: 0; color: var(--muted); }
.portal-kicker { margin: 0 0 7px; color: #d84c00; font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.summary-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-bottom: 16px; }
.summary-card { min-height: 145px; display: flex; flex-direction: column; align-items: flex-start; padding: 24px; background: var(--white); border: 1px solid var(--line); border-radius: 16px; box-shadow: 0 10px 30px rgba(9,28,55,.05); }
.summary-card > span { color: var(--muted); font-size: 11px; font-weight: 700; }
.summary-card > strong { margin: 14px 0 4px; font: 600 30px/1 "Space Grotesk", sans-serif; }
.summary-card > strong.status-text { font-size: 23px; }
.summary-card small { color: #8795a6; font-size: 10px; }
.summary-card a { margin-top: auto; color: #d84c00; font-size: 10px; font-weight: 800; }
.portal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.portal-panel { padding: 26px; background: var(--white); border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 10px 30px rgba(9,28,55,.045); }
.portal-panel-wide { grid-column: 1 / -1; }
.panel-heading { min-height: 49px; display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; padding-bottom: 19px; border-bottom: 1px solid var(--line); }
.panel-heading h2 { margin: 0; font: 600 23px/1.15 "Space Grotesk", sans-serif; letter-spacing: -.025em; }
.panel-link { color: #d84c00; font-size: 10px; font-weight: 800; white-space: nowrap; }
.contract-row { display: grid; grid-template-columns: 1.15fr 1.25fr auto; align-items: center; gap: 30px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.contract-row:last-child { padding-bottom: 0; border-bottom: 0; }
.contract-main h3 { margin: 9px 0 4px; font: 600 18px/1.25 "Space Grotesk", sans-serif; }
.contract-main p { margin: 0; color: var(--muted); font-size: 10px; }
.contract-facts, .contract-summary { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin: 0; }
.contract-facts div, .contract-summary div { display: grid; gap: 3px; }
.contract-facts dt, .contract-summary dt { color: #7f8d9e; font-size: 9px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.contract-facts dd, .contract-summary dd { margin: 0; font-size: 11px; font-weight: 700; }
.status-pill { display: inline-flex; width: fit-content; padding: 5px 8px; color: #305375; background: #eaf2fa; border-radius: 99px; font-size: 8px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.status-active, .status-paid, .status-confirmed { color: #086247; background: #dcf8ed; }
.status-past_due, .status-failed, .status-cancelled { color: #912b39; background: #fff0f2; }
.record-list article { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.record-list article:last-child { padding-bottom: 0; border-bottom: 0; }
.record-list article > div { display: grid; gap: 4px; }
.record-list strong { font-size: 12px; }
.record-list small { color: var(--muted); font-size: 9px; }
.record-amount { text-align: right; }
.empty-state { padding: 34px 12px 12px; text-align: center; color: var(--muted); }
.empty-state.compact { padding: 28px 0 4px; }
.empty-state h3 { margin: 0 0 6px; color: var(--ink); font: 600 17px/1.25 "Space Grotesk", sans-serif; }
.empty-state p { margin: 0; font-size: 11px; }
.portal-footer { color: #aaa; background: #070707; border-top: 2px solid rgba(242,97,11,.7); }
.portal-footer .portal-shell { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: 10px; }
.portal-footer a { color: #d6e3f2; }

.portal-form-wrap { width: min(100%, 720px); margin-inline: auto; }
.back-link { display: inline-block; margin-bottom: 20px; color: #c74a08; font-size: 11px; font-weight: 800; }
.portal-form-card { padding: 38px; background: var(--white); border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); }
.portal-form-card h1 { font-size: clamp(32px, 5vw, 46px); }
.portal-form-card .form-intro { margin-bottom: 28px; }
.portal-form { display: grid; gap: 19px; }
.portal-field { display: grid; gap: 7px; }
.portal-field > label { color: #35475b; font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.portal-field input:not([type="checkbox"]):not([type="radio"]), .portal-field select, .portal-field textarea { width: 100%; padding: 12px 13px; color: var(--ink); background: #fbfcfe; border: 1px solid #d7e0e9; border-radius: 8px; outline: none; }
.portal-field input:focus, .portal-field select:focus, .portal-field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(242,97,11,.14); }
.portal-field textarea { resize: vertical; }
.portal-field ul { display: grid; gap: 9px; margin: 3px 0 0; padding: 0; list-style: none; }
.portal-field ul label, .check-field { display: flex; align-items: flex-start; gap: 9px; color: #43546a; font-size: 11px; font-weight: 600; line-height: 1.5; }
.portal-field input[type="radio"], .portal-field input[type="checkbox"] { margin-top: 3px; accent-color: var(--blue); }
.field-error { color: #a12536; }
.contract-summary { margin: 0 0 27px; padding: 18px; background: #f3f7fb; border-radius: 12px; }
.autopay-status { display: grid; gap: 3px; margin-bottom: 25px; padding: 18px; background: #fff4ec; border: 1px solid #ffd7bd; border-radius: 12px; }
.autopay-status span { color: #5e7085; font-size: 9px; font-weight: 800; text-transform: uppercase; }
.autopay-status strong { color: #b84305; font: 600 18px/1.3 "Space Grotesk", sans-serif; }
.autopay-status small, .security-note { color: var(--muted); font-size: 10px; }
.security-note { margin: 22px 0 0; padding-top: 18px; border-top: 1px solid var(--line); }

.login-body { min-height: 100vh; color: var(--white); background: radial-gradient(circle at 70% 10%, rgba(242,97,11,.22), transparent 30%), linear-gradient(135deg, #070707, #1b1b1c); }
.login-shell { width: min(calc(100% - 32px), 510px); margin-inline: auto; padding: 55px 0 80px; }
.login-shell > .brand { margin-bottom: 42px; }
.login-card { padding: 38px; color: var(--ink); background: var(--white); border: 1px solid rgba(255,255,255,.2); border-radius: 22px; box-shadow: 0 35px 90px rgba(0,0,0,.35); }
.login-card > p:not(.portal-kicker):not(.login-help) { margin: 0 0 28px; color: var(--muted); }
.login-help { margin: 24px 0 0; padding-top: 19px; color: var(--muted); border-top: 1px solid var(--line); font-size: 10px; }
.login-help a { color: #d84c00; font-weight: 700; }

.policy-body { background: #f3f6fa; }
.policy-main { display: grid; grid-template-columns: 210px minmax(0,760px); justify-content: center; gap: 70px; padding-top: 64px; padding-bottom: 90px; }
.policy-nav { position: sticky; top: 30px; align-self: start; display: grid; gap: 11px; padding: 20px; background: var(--white); border: 1px solid var(--line); border-radius: 14px; }
.policy-nav strong { margin-bottom: 6px; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.policy-nav a { color: #54708d; font-size: 11px; }
.policy-nav a:hover { color: #d84c00; }
.policy-content { padding: 44px; background: var(--white); border: 1px solid var(--line); border-radius: 20px; box-shadow: 0 18px 55px rgba(9,28,55,.07); }
.policy-content > h1 { margin: 0; font: 600 clamp(40px,5vw,58px)/1.05 "Space Grotesk", sans-serif; letter-spacing: -.045em; }
.policy-content > p, .policy-content section p { color: #52657b; font-size: 13px; line-height: 1.8; }
.policy-updated { padding-bottom: 24px; border-bottom: 1px solid var(--line); font-size: 10px !important; }
.policy-content section { scroll-margin-top: 30px; padding-top: 25px; }
.policy-content h2 { margin: 0 0 10px; font: 600 24px/1.2 "Space Grotesk", sans-serif; letter-spacing: -.025em; }
.policy-content a { color: #d84c00; font-weight: 700; }
.policy-contact { display: grid; gap: 5px; margin-top: 36px; padding: 22px; background: #fff4ec; border-radius: 12px; font-size: 11px; }

@media (max-width: 960px) {
  .site-nav { position: fixed; inset: 74px 20px auto; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 14px; background: rgba(8,16,31,.98); border: 1px solid rgba(255,255,255,.12); border-radius: 14px; box-shadow: var(--shadow); }
  .site-nav.open { display: flex; }.site-nav a { padding: 13px; }.nav-toggle { display: block; }
  .hero { padding-top: 135px; }.hero-grid { grid-template-columns: 1fr; gap: 45px; }.hero-copy { text-align: center; }.hero h1, .hero-lead { margin-left: auto; margin-right: auto; }.eyebrow, .hero-actions, .hero-points { justify-content: center; }
  .hero-visual { min-height: 470px; }.capability-strip { margin-top: 55px; gap: 17px; }
  .section-heading, .partners-heading { grid-template-columns: 1fr; gap: 20px; }.section-heading > p, .partners-heading > p { max-width: 650px; }
  .solutions-grid { grid-template-columns: repeat(2,1fr); }.featured-card { grid-column: span 2; }
  .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 55px; }.why-copy { max-width: 700px; }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
  .portal-header-inner { align-items: flex-start; flex-direction: column; padding: 18px 0; }
  .portal-nav { width: 100%; justify-content: space-between; }
  .contract-row { grid-template-columns: 1fr; gap: 17px; }
  .policy-main { grid-template-columns: 1fr; gap: 20px; }
  .policy-nav { position: static; grid-template-columns: repeat(3,1fr); }
  .policy-nav strong { grid-column: 1/-1; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--container)); }.site-header { padding: 11px 0; background: rgba(8,16,31,.9); }
  .brand-logo { width: 176px; height: 46px; }.brand-context { display: none; }
  .hero { min-height: auto; padding-top: 116px; }.hero h1 { font-size: clamp(39px, 13vw, 57px); }.hero-lead { font-size: 15px; }.hero-actions { flex-direction: column; gap: 18px; }.hero-points { display: grid; justify-content: start; width: fit-content; margin-inline: auto; text-align: left; }
  .hero-visual { min-height: 390px; }.device-card { width: 95%; }.property-view { height: 200px; }.device-controls button { min-height: 80px; padding: 9px; }.orbit-one { width: 390px; height: 390px; }.orbit-two { width: 310px; height: 310px; }.floating-card { padding: 9px 11px; }.alert-card { left: -2px; bottom: 22px; }.wifi-card { right: -4px; top: 16px; }
  .capability-strip { justify-content: flex-start; overflow-x: auto; height: 78px; margin-top: 32px; padding: 0 6px; white-space: nowrap; }
  .section { padding: 80px 0; }.section h2 { font-size: 38px; }.section-heading { margin-bottom: 35px; }
  .solutions-grid { grid-template-columns: 1fr; }.featured-card { grid-column: auto; grid-template-columns: 1fr; padding: 28px; }.featured-card .card-icon { margin-bottom: 18px; }.featured-card h3 { font-size: 26px; }.featured-card ul { display: grid; }
  .solution-card { min-height: 300px; }
  .partner-grid { grid-template-columns: 1fr; }
  .partner-card { min-height: 245px; padding: 28px; }
  .brand-moment { padding: 42px 0; }
  .brand-moment-frame { border-radius: 22px; }
  .brand-signature-art { display: none; }
  .brand-signature-mobile { position: relative; display: grid; place-items: center; min-height: 390px; padding: 38px 20px; text-align: center; background: radial-gradient(circle at 50% 40%, rgba(242,97,11,.14), transparent 42%), linear-gradient(145deg, #090909, #171718); }
  .brand-signature-mobile::before { content: ""; position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(30deg, rgba(242,97,11,.3) 12%, transparent 12.5%, transparent 87%, rgba(242,97,11,.3) 87.5%), linear-gradient(150deg, rgba(255,255,255,.1) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,.1) 87.5%); background-size: 60px 104px; mask-image: linear-gradient(180deg, black, transparent 75%); }
  .brand-signature-mobile > * { position: relative; z-index: 1; }
  .brand-signature-mobile img { width: min(68vw, 250px); height: auto; filter: drop-shadow(0 16px 28px rgba(0,0,0,.52)); }
  .brand-signature-mobile p { margin: 4px 0 0; color: #bbb; font-size: 9px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
  .brand-signature-mobile p span { margin: 0 5px; color: var(--blue-bright); }
  .brand-signature-mobile strong { color: var(--white); font: 600 29px/1.15 "Space Grotesk", sans-serif; letter-spacing: -.03em; }
  .brand-signature-mobile strong em { color: var(--blue-bright); font-style: normal; }
  .process-grid { grid-template-columns: 1fr; }.process-grid article { min-height: 210px; }.process-grid h3 { margin-top: 30px; }
  .contact-form { padding: 24px 18px; }.form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 35px; }.footer-bottom { flex-direction: column; }
  .portal-shell { width: min(calc(100% - 26px), 1180px); }
  .portal-nav { overflow-x: auto; gap: 18px; padding-bottom: 2px; white-space: nowrap; }
  .portal-welcome { align-items: flex-start; flex-direction: column; }
  .summary-grid, .portal-grid { grid-template-columns: 1fr; }
  .portal-panel-wide { grid-column: auto; }
  .contract-facts, .contract-summary { grid-template-columns: 1fr; }
  .portal-form-card, .login-card { padding: 26px 20px; }
  .portal-footer .portal-shell { align-items: flex-start; flex-direction: column; justify-content: center; }
  .policy-content { padding: 28px 20px; }
  .policy-nav { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
