:root {
  color-scheme: dark;
  --night: #0a0e19;
  --panel: #11182a;
  --panel-soft: #151e34;
  --text: #f4f7ff;
  --muted: #9ca8be;
  --line: rgba(180, 206, 255, .13);
  --cyan: #28e2f0;
  --blue: #3475ff;
  --violet: #9c55ff;
  --magenta: #db42ef;
  --cream: #e9e0cf;
  --sans: Inter, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; color: var(--text); background: var(--night); font-family: var(--sans); }
a { color: inherit; }
img { display: block; max-width: 100%; }
.skip-link { position: fixed; z-index: 100; top: 10px; left: 10px; transform: translateY(-150%); padding: 10px 14px; border-radius: 99px; color: #09101e; background: #fff; }
.skip-link:focus { transform: none; }

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1380px, calc(100% - 72px));
  margin: 0 auto;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid rgba(81,225,255,.4); border-radius: 13px; background: linear-gradient(145deg, #122b61, #15112c); box-shadow: inset 0 0 20px rgba(45,125,255,.18); color: var(--cyan); font-weight: 800; letter-spacing: -.08em; }
.brand strong, .brand small { display: block; }
.brand strong { font-size: 16px; letter-spacing: .01em; }
.brand small { margin-top: 2px; color: var(--muted); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; }

.site-header nav { display: flex; align-items: center; gap: 32px; }
.site-header nav a { color: var(--muted); font-size: 12px; font-weight: 600; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; transition: color .2s; }
.site-header nav a:hover, .site-header nav a:focus-visible { color: #fff; }
.site-header nav .nav-cta { padding: 12px 16px; border: 1px solid rgba(59,219,244,.36); color: #fff; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(50px, 6vw, 110px);
  min-height: 880px;
  padding: 150px max(36px, calc((100vw - 1380px) / 2)) 90px;
  overflow: hidden;
  background: linear-gradient(145deg, #10172a 0%, #090d17 54%, #080b14 100%);
}

.hero-grid { position: absolute; z-index: -3; inset: 0; opacity: .32; background-image: linear-gradient(rgba(69,110,190,.13) 1px, transparent 1px), linear-gradient(90deg, rgba(69,110,190,.13) 1px, transparent 1px); background-size: 52px 52px; mask-image: radial-gradient(circle at 75% 42%, #000, transparent 58%); }
.hero-glow { position: absolute; z-index: -2; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.hero-glow-one { top: 2%; right: 5%; width: 560px; height: 560px; background: radial-gradient(circle, rgba(33,100,255,.15), transparent 66%); }
.hero-glow-two { right: 38%; bottom: -15%; width: 420px; height: 420px; background: radial-gradient(circle, rgba(198,55,242,.08), transparent 68%); }

.kicker { display: flex; align-items: center; gap: 10px; margin: 0 0 22px; color: #aeb9cc; font-size: 11px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.kicker span { width: 22px; height: 1px; background: linear-gradient(90deg, var(--cyan), var(--violet)); box-shadow: 0 0 7px var(--cyan); }
.hero h1, .section-heading h2, .contact h2 { margin: 0; letter-spacing: -.055em; line-height: .98; }
.hero h1 { max-width: 820px; font-size: clamp(58px, 6.2vw, 104px); font-weight: 640; }
.hero h1 em { color: transparent; background: linear-gradient(100deg, #f1f6ff 10%, #75e9ff 54%, #b07cff); background-clip: text; font-style: normal; }
.hero-lead { max-width: 660px; margin: 30px 0; color: var(--muted); font-size: clamp(17px, 1.3vw, 21px); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 34px; min-height: 52px; padding: 0 19px; border: 1px solid var(--line); text-decoration: none; font-size: 12px; font-weight: 700; letter-spacing: .05em; transition: transform .2s, border-color .2s, background .2s, box-shadow .2s; }
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { border-color: rgba(68,219,247,.45); background: linear-gradient(100deg, rgba(28,108,231,.35), rgba(118,63,232,.28)); box-shadow: inset 0 0 22px rgba(62,151,255,.09); }
.button-primary:hover { border-color: var(--cyan); box-shadow: 0 8px 28px rgba(27,104,218,.2); }
.button-ghost { color: #c6cfdf; background: rgba(255,255,255,.02); }
.button-download { border-color: rgba(57,225,255,.42); background: rgba(27,87,126,.22); color: #d9fbff; }
.hero-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 710px; margin: 70px 0 0; padding: 0; list-style: none; }
.hero-facts li { display: flex; gap: 12px; padding-top: 16px; border-top: 1px solid var(--line); }
.hero-facts strong { color: var(--cyan); font-size: 10px; }
.hero-facts span { color: #8f9cb2; font-size: 11px; line-height: 1.5; }

.hero-visual { position: relative; min-height: 520px; }
.visual-shell { position: absolute; top: 9%; left: 4%; width: 92%; min-height: 390px; overflow: hidden; border: 1px solid rgba(106,167,255,.24); border-radius: 30px; background: linear-gradient(145deg, rgba(26,40,73,.85), rgba(8,12,23,.93)); box-shadow: 0 48px 90px rgba(0,0,0,.4), inset 0 0 70px rgba(44,108,255,.08); transform: perspective(900px) rotateY(-7deg) rotateX(2deg); }
.visual-toolbar { display: flex; align-items: center; gap: 7px; height: 54px; padding: 0 20px; border-bottom: 1px solid var(--line); color: #68768d; font: 10px/1 monospace; }
.visual-toolbar i { width: 8px; height: 8px; border-radius: 50%; background: #3d4a61; }
.visual-toolbar i:first-child { background: var(--magenta); }.visual-toolbar i:nth-child(2) { background: var(--violet); }.visual-toolbar i:nth-child(3) { background: var(--cyan); }
.visual-toolbar span { margin-left: 10px; }
.code-lines { display: flex; flex-direction: column; gap: 17px; padding: 46px 42px; color: #8f9db4; font: 14px/1.4 Consolas, monospace; }
.code-lines b { color: #9d75ff; font-weight: 500; }.code-lines i { color: #65dce9; font-style: normal; }.code-lines .code-success { margin-top: 12px; color: #6ee7b7; }
.pulse-chart { position: absolute; right: 34px; bottom: 28px; left: 34px; display: flex; align-items: flex-end; gap: 8px; height: 58px; opacity: .55; }
.pulse-chart i { flex: 1; height: 30%; border-radius: 3px 3px 0 0; background: linear-gradient(to top, var(--blue), var(--cyan)); animation: pulse-bars 2.8s ease-in-out infinite alternate; }.pulse-chart i:nth-child(2n) { height: 70%; animation-delay: -.7s; }.pulse-chart i:nth-child(3n) { height: 95%; animation-delay: -1.4s; }
.floating-chip { position: absolute; z-index: 3; min-width: 116px; padding: 14px 17px; border: 1px solid rgba(95,194,255,.3); border-radius: 15px; background: rgba(12,20,39,.87); box-shadow: 0 18px 38px rgba(0,0,0,.35), inset 0 0 22px rgba(46,113,255,.08); color: var(--cyan); font-size: 11px; font-weight: 800; letter-spacing: .12em; backdrop-filter: blur(14px); animation: float 5s ease-in-out infinite; }
.floating-chip span { display: block; margin-top: 5px; color: #77869e; font-size: 9px; font-weight: 500; letter-spacing: .04em; }.chip-web { top: 1%; left: -2%; }.chip-mobile { top: 39%; right: -4%; animation-delay: -1.5s; }.chip-server { bottom: 3%; left: 10%; animation-delay: -3s; }

.section { width: min(1380px, calc(100% - 72px)); margin: 0 auto; padding: 130px 0; }
.section-heading { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; margin-bottom: 62px; }
.section-heading .kicker { grid-column: 1 / -1; margin-bottom: -12px; }
.section-heading h2, .contact h2 { font-size: clamp(46px, 5vw, 78px); font-weight: 600; }
.section-heading > p:last-child { max-width: 430px; justify-self: end; margin: 0; color: var(--muted); font-size: 16px; line-height: 1.7; }

.services { border-bottom: 1px solid var(--line); }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { position: relative; min-height: 420px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: linear-gradient(145deg, rgba(255,255,255,.018), transparent); transition: background .3s, transform .3s; }
.service-card:hover { z-index: 2; transform: translateY(-5px); background: var(--panel); }
.service-number { color: #66738a; font: 10px/1 monospace; }
.service-icon { display: grid; place-items: center; width: 54px; height: 54px; margin: 52px 0 34px; border: 1px solid rgba(82,213,246,.25); border-radius: 16px; background: rgba(29,89,175,.08); color: var(--cyan); font-size: 23px; }
.service-card h3 { margin: 0 0 16px; font-size: 21px; }.service-card p { min-height: 76px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.service-card ul { margin: 26px 0 0; padding: 0; list-style: none; color: #79879d; font-size: 12px; line-height: 1.9; }.service-card li::before { content: "—"; margin-right: 8px; color: #41516d; }
.service-card-accent { background: linear-gradient(150deg, rgba(35,103,219,.18), rgba(126,54,212,.1)); }.service-card-accent a { position: absolute; right: 30px; bottom: 30px; left: 30px; display: flex; justify-content: space-between; padding-top: 16px; border-top: 1px solid rgba(83,221,245,.24); color: #d9faff; font-size: 12px; text-decoration: none; }

.products { padding-bottom: 40px; }
.product { border: 1px solid var(--line); border-radius: 30px; background: var(--panel); }
.product-calendar { display: grid; grid-template-columns: .92fr 1.08fr; min-height: 560px; overflow: hidden; background: linear-gradient(135deg, #271520, #11182a 52%, #151124); }
.product-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(36px, 5vw, 76px); }
.product-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 38px; color: #79869c; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }.status-live { padding: 7px 10px; border: 1px solid rgba(75,220,166,.28); border-radius: 99px; color: #6ee7b7; background: rgba(52,211,153,.07); }
.product-title { display: flex; align-items: center; gap: 15px; }.product-title img { width: 48px; height: 48px; object-fit: contain; }.product-title h3 { margin: 0; font-size: clamp(44px, 4vw, 67px); letter-spacing: -.05em; }
.product-copy > p { max-width: 560px; margin: 25px 0 34px; color: #a9b2c2; font-size: 16px; line-height: 1.75; }.product-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 20px; }.product-actions > span { color: #6f7d94; font-size: 11px; }
.calendar-preview { position: relative; align-self: center; justify-self: center; width: min(82%, 600px); min-height: 410px; padding: 28px; border: 8px solid rgba(255,255,255,.07); border-radius: 34px; background: #f5f0e8; color: #2b2325; box-shadow: 0 40px 90px rgba(0,0,0,.4); transform: rotate(2deg); }
.calendar-bar { display: flex; justify-content: space-between; align-items: center; padding-bottom: 20px; border-bottom: 1px solid #ddd5cd; color: #872d39; font-size: 12px; font-weight: 800; text-transform: uppercase; }.calendar-bar i { width: 42px; height: 8px; border-radius: 99px; background: #872d39; opacity: .16; }
.calendar-preview > p { margin: 28px 0 13px; color: #9a6066; font-size: 12px; font-weight: 700; }.calendar-preview h4 { margin: 0; font-size: clamp(36px, 4vw, 58px); letter-spacing: -.05em; line-height: 1; }
.calendar-event { display: flex; align-items: center; gap: 13px; margin-top: 45px; padding: 17px; border-radius: 16px; background: #fff; box-shadow: 0 10px 28px rgba(57,29,33,.08); }.calendar-event > i { width: 4px; height: 40px; border-radius: 9px; background: #8c303c; }.calendar-event span { display: flex; flex: 1; flex-direction: column; gap: 5px; }.calendar-event b { font-size: 12px; }.calendar-event small, .calendar-event strong { color: #958b88; font-size: 9px; }.calendar-event strong { font-weight: 500; }
.calendar-nav { position: absolute; right: 30px; bottom: 18px; left: 30px; display: flex; justify-content: space-around; }.calendar-nav i { width: 8px; height: 8px; border: 2px solid #817675; border-radius: 3px; }
.product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 24px; }.product-small { display: grid; grid-template-columns: 1fr 1fr; min-height: 380px; overflow: hidden; border: 1px solid var(--line); border-radius: 26px; background: var(--panel); }.product-image { display: grid; place-items: center; min-height: 100%; background: radial-gradient(circle, rgba(38,93,213,.28), transparent 57%), #0a1020; }.product-image img { width: 72%; max-height: 300px; object-fit: contain; filter: drop-shadow(0 22px 34px rgba(0,0,0,.3)); }.mcp-product img { width: 100%; height: 100%; max-height: none; object-fit: cover; opacity: .85; }.product-small-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 34px; }.product-small-copy > span:first-child { color: #73819a; font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }.product-small-copy h3 { margin: 16px 0; font-size: 25px; }.product-small-copy p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }.product-small-copy .soon { margin-top: 28px; padding: 7px 10px; border: 1px solid var(--line); border-radius: 99px; color: #91a0b8; font-size: 9px; text-transform: uppercase; }
.product-wide { grid-column: 1 / -1; }
.product-link { display: flex; align-items: center; justify-content: space-between; width: 100%; margin-top: 28px; padding-top: 14px; border-top: 1px solid var(--line); color: #d9faff; font-size: 10px; font-weight: 700; letter-spacing: .09em; text-decoration: none; text-transform: uppercase; }
.product-link b { color: var(--cyan); font-size: 16px; }
.product-card-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; width: 100%; margin-top: 28px; }
.product-card-actions .product-link { margin-top: 0; padding-top: 13px; }
.product-card-actions .download-link { color: var(--cyan); }
.solution-note { width: 100%; margin-top: 28px; padding-top: 14px; border-top: 1px solid var(--line); color: #8d9ab0; font-size: 9px; letter-spacing: .08em; line-height: 1.5; text-transform: uppercase; }
.brohome-product img { width: 100%; height: 100%; max-height: none; object-fit: cover; opacity: .82; }
.ipscan-product { position: relative; overflow: hidden; background: radial-gradient(circle, rgba(26,224,238,.16), transparent 52%), #08101a; }
.ipscan-radar { position: relative; width: 210px; aspect-ratio: 1; border: 1px solid rgba(40,226,240,.35); border-radius: 50%; background: repeating-radial-gradient(circle, transparent 0 34px, rgba(40,226,240,.12) 35px 36px); box-shadow: 0 0 40px rgba(40,226,240,.1); }
.ipscan-radar::before, .ipscan-radar::after { content: ""; position: absolute; background: rgba(40,226,240,.18); }.ipscan-radar::before { top: 50%; right: 0; left: 0; height: 1px; }.ipscan-radar::after { top: 0; bottom: 0; left: 50%; width: 1px; }
.ipscan-radar i { position: absolute; width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 14px var(--cyan); }.ipscan-radar i:first-child { top: 28%; left: 61%; }.ipscan-radar i:nth-child(2) { top: 65%; left: 33%; }.ipscan-radar i:nth-child(3) { top: 44%; left: 74%; }
.ipscan-radar span { position: absolute; top: 50%; left: 50%; color: rgba(180,240,247,.65); font: 10px/1 monospace; transform: translate(-50%,-50%); }
.onec-product { background: radial-gradient(circle at 50% 45%, rgba(255,198,54,.18), transparent 48%), linear-gradient(145deg, #171622, #0b0e18); }
.onec-stack { position: relative; display: grid; place-items: center; width: 180px; aspect-ratio: 1; border: 1px solid rgba(255,205,54,.35); border-radius: 32px; background: linear-gradient(145deg, #2a2315, #121522); box-shadow: 0 24px 55px rgba(0,0,0,.35); transform: rotate(-4deg); }
.onec-stack::before, .onec-stack::after { content: ""; position: absolute; z-index: -1; inset: 10px -13px -10px 13px; border: 1px solid rgba(255,255,255,.12); border-radius: 29px; transform: rotate(7deg); }.onec-stack::after { inset: -9px 12px 11px -12px; transform: rotate(-4deg); }
.onec-stack span { color: #ffcf35; font: 800 54px/1 var(--sans); letter-spacing: -.08em; }.onec-stack b { position: absolute; bottom: 25px; color: #aab4c6; font: 8px/1 monospace; letter-spacing: .15em; }.onec-stack i { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); }.onec-stack i:nth-of-type(1) { top: 25px; right: 28px; }.onec-stack i:nth-of-type(2) { right: 24px; bottom: 55px; }.onec-stack i:nth-of-type(3) { bottom: 42px; left: 27px; background: #ffcf35; box-shadow: 0 0 12px #ffcf35; }

.process { padding-bottom: 150px; }.process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }.process-list li { display: grid; grid-template-columns: 100px 1fr; padding: 34px 0; border-bottom: 1px solid var(--line); }.process-list li > span { color: var(--cyan); font: 11px/1 monospace; }.process-list h3 { margin: 0 0 8px; font-size: 21px; }.process-list p { margin: 0; color: var(--muted); font-size: 14px; }

.contact { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; width: min(1450px, calc(100% - 32px)); margin: 0 auto 16px; padding: clamp(56px, 7vw, 110px); border: 1px solid rgba(74,174,255,.2); border-radius: 32px; background: radial-gradient(circle at 80% 20%, rgba(42,108,255,.15), transparent 30%), linear-gradient(135deg, #141d32, #0c111e); }.contact-details { align-self: end; }.contact-details > p { max-width: 480px; color: var(--muted); line-height: 1.7; }.contact-email { display: flex; justify-content: space-between; margin-top: 32px; padding-bottom: 16px; border-bottom: 1px solid rgba(57,225,255,.3); color: #dcfaff; font-size: clamp(18px, 2vw, 26px); text-decoration: none; }.contact dl { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 38px 0 0; }.contact dl div { padding-top: 14px; border-top: 1px solid var(--line); }.contact dt { color: #77859d; font-size: 10px; text-transform: uppercase; }.contact dd { margin: 8px 0 0; color: #a5afbf; font-size: 12px; }
.site-footer { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; width: min(1380px, calc(100% - 72px)); margin: 0 auto; padding: 54px 0; color: #728098; font-size: 11px; }.site-footer p { margin: 0; }.site-footer > div { display: flex; justify-self: end; gap: 26px; }.site-footer > div a { text-decoration: none; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s cubic-bezier(.22,1,.36,1); }.reveal.is-visible { opacity: 1; transform: none; }.hero .reveal { animation: reveal-start .9s .15s both; }.hero .hero-visual { animation-delay: .3s; }
@keyframes reveal-start { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes pulse-bars { to { height: 85%; opacity: .9; } }

@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; padding-top: 150px; }
  .hero-copy { max-width: 850px; }
  .hero-visual { width: min(760px, 100%); min-height: 510px; margin: 0 auto; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .product-small { min-height: 330px; }
}

@media (max-width: 800px) {
  .site-header { width: calc(100% - 36px); padding: 18px 0; }
  .menu-toggle { display: block; padding: 10px 12px; border: 1px solid var(--line); color: #fff; background: transparent; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
  .site-header nav { position: absolute; top: calc(100% + 1px); right: 0; left: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 12px; border: 1px solid var(--line); background: rgba(10,14,25,.97); backdrop-filter: blur(20px); }
  .site-header nav.is-open { display: flex; }.site-header nav a { padding: 15px; }.site-header nav .nav-cta { margin-top: 5px; }
  .hero { min-height: auto; padding: 130px 24px 70px; }
  .hero h1 { font-size: clamp(48px, 13vw, 78px); }
  .hero-facts { grid-template-columns: 1fr; gap: 9px; margin-top: 45px; }.hero-facts li { padding: 12px 0; }
  .hero-visual { min-height: 430px; }.visual-shell { left: 0; width: 100%; min-height: 350px; transform: none; }.code-lines { padding: 36px 24px; font-size: 12px; }.floating-chip { min-width: 94px; padding: 11px 12px; }.chip-web { left: -2%; }.chip-mobile { right: -2%; }
  .section { width: calc(100% - 36px); padding: 90px 0; }
  .section-heading { display: block; }.section-heading .kicker { margin-bottom: 20px; }.section-heading > p:last-child { margin-top: 22px; }
  .service-grid { grid-template-columns: 1fr; }.service-card { min-height: 360px; }.service-icon { margin: 38px 0 28px; }
  .product-calendar { grid-template-columns: 1fr; padding-bottom: 50px; }.calendar-preview { width: calc(100% - 36px); min-height: 360px; }.product-grid { gap: 18px; }.product-small { grid-template-columns: 1fr; }.product-image { min-height: 260px; }.product-small-copy { min-height: 280px; }
  .contact { grid-template-columns: 1fr; gap: 45px; width: calc(100% - 24px); padding: 44px 26px; }.contact dl { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr; gap: 28px; width: calc(100% - 36px); }.site-footer > div { justify-self: start; }
}

@media (max-width: 480px) {
  .brand-mark { width: 38px; height: 38px; }.brand small { display: none; }
  .hero { padding-right: 18px; padding-left: 18px; }.hero h1 { font-size: 46px; }.hero-lead { font-size: 16px; }.hero-actions .button { width: 100%; }.hero-visual { min-height: 380px; }.visual-shell { min-height: 320px; border-radius: 20px; }.code-lines { gap: 14px; padding: 30px 20px; font-size: 11px; }.chip-mobile { top: 46%; }.chip-server { bottom: 0; }
  .section-heading h2, .contact h2 { font-size: 42px; }.product-copy { padding: 34px 24px; }.product-title h3 { font-size: 42px; }.calendar-preview { min-height: 330px; padding: 22px; border-width: 5px; border-radius: 24px; }.calendar-preview h4 { font-size: 38px; }.calendar-event strong { display: none; }
  .process-list li { grid-template-columns: 50px 1fr; }.contact-email { font-size: 16px; }
  .product-card-actions { grid-template-columns: 1fr; gap: 8px; }
}

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