:root {
  --rys-orange: #f97316;
  --rys-orange-dark: #c2410c;
  --rys-navy: #071018;
  --rys-navy-2: #0f172a;
  --rys-steel: #475569;
  --rys-gray: #e5e7eb;
  --rys-soft: #f8fafc;
  --rys-white: #ffffff;
  --rys-black: #05080c;
  --rys-shadow: 0 22px 60px rgba(15, 23, 42, .16);
  --rys-radius: 18px;
  --rys-radius-sm: 10px;
  --rys-container: 1420px;
  --rys-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--rys-soft);
  color: #111827;
  font-family: var(--rys-font);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; }
.screen-reader-text, .rys-skip-link {
  border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; word-wrap: normal !important;
}
.rys-skip-link:focus { clip: auto; clip-path: none; height: auto; width: auto; background: #fff; padding: 10px; z-index: 1000; }
.rys-container { width: min(var(--rys-container), calc(100% - 40px)); margin: 0 auto; }

/* Header */
.rys-site-header { background: var(--rys-black); color: #fff; position: sticky; top: 0; z-index: 100; box-shadow: 0 1px 0 rgba(255,255,255,.08); }
.rys-header-top { background: linear-gradient(180deg, #071018 0%, #05080c 100%); border-bottom: 1px solid rgba(255,255,255,.08); }
.rys-header-top__inner { min-height: 92px; display: grid; grid-template-columns: 360px 1fr auto auto; gap: 28px; align-items: center; }
.rys-brand { display: flex; align-items: center; gap: 14px; color: #fff; min-width: 0; }
.rys-brand--image img { display: block; max-height: 66px; max-width: 340px; width: auto; object-fit: contain; }
.rys-brand__mark { width: 58px; height: 58px; border: 3px solid var(--rys-orange); border-radius: 18px 18px 18px 6px; display: grid; place-items: center; background: linear-gradient(135deg, var(--rys-orange), #ffb020); color: #101827; font-weight: 950; font-size: 28px; transform: skew(-5deg); box-shadow: 0 18px 40px rgba(249, 115, 22, .3); }
.rys-brand__text strong { display: block; font-size: clamp(22px, 2vw, 31px); letter-spacing: .06em; text-transform: uppercase; line-height: 1; }
.rys-brand__text strong::first-letter { color: var(--rys-orange); }
.rys-brand__text small { display: block; margin-top: 5px; font-size: 12px; color: #cbd5e1; text-transform: uppercase; letter-spacing: .16em; }
.rys-header-search { position: relative; }
.rys-header-search input { width: 100%; height: 58px; border-radius: 7px; border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.96); color: #111827; padding: 0 58px 0 24px; box-shadow: inset 0 0 0 1px rgba(0,0,0,.03); }
.rys-header-search button { position: absolute; right: 8px; top: 7px; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; font-size: 32px; line-height: 1; color: #0f172a; }
.rys-header-actions { display: flex; align-items: center; gap: 14px; }
.rys-header-action, .rys-quote-mini { color: #fff; display: inline-flex; align-items: center; gap: 10px; padding: 10px 0; white-space: nowrap; border: 0; background: transparent; cursor: pointer; }
.rys-header-action span, .rys-quote-mini span { color: var(--rys-orange); font-size: 24px; }
.rys-header-action strong, .rys-quote-mini { font-size: 14px; font-weight: 800; }
.rys-quote-mini b { display: inline-grid; place-items: center; min-width: 20px; height: 20px; padding: 0 5px; background: var(--rys-orange); border-radius: 999px; color: #fff; margin-left: 2px; }
.rys-mobile-toggle { display: none; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.2); background: transparent; border-radius: 10px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.rys-mobile-toggle span { width: 22px; height: 2px; background: #fff; display: block; }
.rys-header-nav { background: rgba(5, 8, 12, .96); }
.rys-header-nav__inner { min-height: 62px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.rys-menu { list-style: none; display: flex; align-items: center; gap: 0; padding: 0; margin: 0; }
.rys-menu > li { position: relative; }
.rys-menu > li > a { display: block; padding: 22px 22px; color: #fff; font-size: 14px; font-weight: 900; text-transform: uppercase; letter-spacing: .04em; }
.rys-menu > li:hover > a, .rys-menu > li.current-menu-item > a, .rys-menu > li.current-menu-ancestor > a { color: var(--rys-orange); }
.rys-menu .sub-menu { position: absolute; left: 0; top: 100%; min-width: 260px; background: #fff; color: #111827; list-style: none; margin: 0; padding: 10px; border-radius: 0 0 14px 14px; box-shadow: var(--rys-shadow); visibility: hidden; opacity: 0; transform: translateY(8px); transition: .18s ease; }
.rys-menu li:hover > .sub-menu { visibility: visible; opacity: 1; transform: translateY(0); }
.rys-menu .sub-menu a { display: block; padding: 12px 14px; border-radius: 10px; color: #172033; font-weight: 750; }
.rys-menu .sub-menu a:hover { background: #fff7ed; color: var(--rys-orange-dark); }
.rys-trust-row { display: flex; gap: 0; color: #fff; border-left: 1px solid rgba(255,255,255,.12); }
.rys-trust-row span { display: block; padding: 0 22px; border-right: 1px solid rgba(255,255,255,.12); }
.rys-trust-row b { display: block; color: #fff; font-size: 13px; text-transform: uppercase; }
.rys-trust-row small { display: block; color: #cbd5e1; font-size: 12px; }

/* Shared components */
.rys-eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--rys-orange); font-weight: 950; letter-spacing: .22em; text-transform: uppercase; font-size: 13px; }
.rys-eyebrow::before { content: ""; width: 46px; height: 4px; background: var(--rys-orange); display: inline-block; }
.rys-btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 54px; padding: 0 26px; border-radius: 7px; font-weight: 950; letter-spacing: .03em; text-transform: uppercase; border: 1px solid transparent; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.rys-btn:hover { transform: translateY(-2px); }
.rys-btn--primary { background: linear-gradient(180deg, #fb7b1f, #ea580c); color: #fff; box-shadow: 0 18px 35px rgba(249,115,22,.32); }
.rys-btn--ghost { background: transparent; color: #fff; border-color: var(--rys-orange); }
.rys-page-content { min-height: 60vh; }
.rys-text-link { color: var(--rys-orange-dark); font-weight: 900; border: 0; background: transparent; padding: 0; cursor: pointer; }

/* Hero */
.rys-hero { position: relative; color: #fff; min-height: 620px; display: flex; align-items: stretch; overflow: hidden; background: #121922; }
.rys-hero__bg { position: absolute; inset: 0; background-color: #1f2937; background-size: cover; background-position: center; }
.rys-hero__bg:not(.has-image)::after { content: "Hero Image Placeholder"; position: absolute; right: 7vw; top: 45%; transform: translateY(-50%); padding: 16px 22px; border: 1px dashed rgba(255,255,255,.35); color: rgba(255,255,255,.72); border-radius: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.rys-hero__bg::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,8,12,.92) 0%, rgba(5,8,12,.75) 34%, rgba(5,8,12,.42) 62%, rgba(5,8,12,.16) 100%); }
.rys-hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 720px) 1fr; align-items: center; min-height: 620px; }
.rys-hero h1 { margin: 16px 0; font-size: clamp(58px, 7vw, 116px); line-height: .88; text-transform: uppercase; letter-spacing: .025em; font-weight: 1000; max-width: 800px; text-shadow: 0 7px 0 rgba(255,255,255,.05); }
.rys-hero p { margin: 0 0 28px; max-width: 570px; font-size: clamp(19px, 2vw, 24px); color: #e5e7eb; }
.rys-hero__actions { display: flex; flex-wrap: wrap; gap: 16px; }
.rys-hero__stats { position: absolute; right: 42px; bottom: 36px; z-index: 3; display: flex; gap: 14px; flex-wrap: wrap; }
.rys-stat-pill { background: rgba(5,8,12,.78); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.12); padding: 14px 18px; border-radius: 14px; min-width: 142px; }
.rys-stat-pill strong { display: block; color: #fff; font-size: 22px; }
.rys-stat-pill span { display: block; color: #cbd5e1; font-size: 12px; text-transform: uppercase; font-weight: 800; }

/* Cards and sections */
.rys-section { padding: 78px 0; }
.rys-section--white { background: #fff; }
.rys-section--dark { background: linear-gradient(135deg, #071018, #111827); color: #fff; }
.rys-section__head { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 34px; }
.rys-section__head h2 { margin: 8px 0 0; font-size: clamp(34px, 4vw, 56px); line-height: .98; letter-spacing: -.02em; }
.rys-section__head p { max-width: 580px; color: #64748b; margin: 0; }
.rys-section--dark .rys-section__head p { color: #cbd5e1; }
.rys-category-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.rys-category-card { min-height: 204px; position: relative; overflow: hidden; background: #f3f4f6; border: 1px solid #e5e7eb; border-radius: 8px; padding: 24px; display: flex; flex-direction: column; justify-content: space-between; box-shadow: 0 8px 24px rgba(15,23,42,.08); transition: transform .18s ease, box-shadow .18s ease; }
.rys-category-card:hover { transform: translateY(-4px); box-shadow: var(--rys-shadow); }
.rys-category-card__media { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .5; }
.rys-category-card__media:not(.has-image)::before { content: "Image Placeholder"; position: absolute; right: 16px; bottom: 16px; color: #94a3b8; font-size: 11px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; border: 1px dashed #cbd5e1; padding: 7px 9px; border-radius: 8px; }
.rys-category-card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,.94) 36%, rgba(255,255,255,.55) 100%); }
.rys-category-card__content { position: relative; z-index: 2; max-width: 60%; }
.rys-category-card h3 { margin: 0 0 8px; font-size: 28px; text-transform: uppercase; line-height: .95; color: #111827; }
.rys-category-card p { margin: 0; color: #334155; font-weight: 600; }
.rys-category-card .arrow { position: relative; z-index: 3; color: var(--rys-orange); font-size: 32px; line-height: 1; }
.rys-promise-strip { display: grid; grid-template-columns: repeat(5, 1fr); background: linear-gradient(135deg, #071018, #111827); color: #fff; border-radius: 8px; margin-top: 34px; overflow: hidden; box-shadow: var(--rys-shadow); }
.rys-promise { padding: 28px; border-right: 1px solid rgba(255,255,255,.12); display: grid; grid-template-columns: 52px 1fr; gap: 16px; align-items: start; }
.rys-promise:last-child { border-right: 0; }
.rys-promise__icon { color: var(--rys-orange); font-size: 38px; line-height: 1; }
.rys-promise h3 { margin: 0 0 4px; text-transform: uppercase; font-size: 17px; }
.rys-promise p { margin: 0; color: #cbd5e1; font-size: 14px; }
.rys-card-grid, .rys-product-grid, .rys-resource-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.rys-product-grid--four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.rys-card, .rys-resource-card, .rys-product-card { background: #fff; border: 1px solid #e5e7eb; border-radius: var(--rys-radius-sm); padding: 26px; box-shadow: 0 10px 35px rgba(15,23,42,.06); }
.rys-card h3, .rys-card h2, .rys-resource-card h3, .rys-product-card h3, .rys-product-card h2 { margin: 0 0 10px; line-height: 1.05; font-size: 24px; }
.rys-card p, .rys-resource-card p, .rys-product-card p { color: #475569; margin: 0 0 18px; }
.rys-product-card { padding: 0; overflow: hidden; }
.rys-product-card__media, .rys-product-media { height: 190px; background: #eef2f7; background-size: cover; background-position: center; display: grid; place-items: center; color: #94a3b8; font-size: 12px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; border-bottom: 1px solid #e5e7eb; }
.rys-product-card > div:not(.rys-product-card__media) { padding: 22px; }
.rys-product-card small, .rys-sku { color: var(--rys-orange-dark); font-weight: 950; letter-spacing: .08em; text-transform: uppercase; }
.rys-industries-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.rys-industry-card { padding: 28px; min-height: 170px; background: #fff; border-radius: 12px; border: 1px solid #e5e7eb; }
.rys-industry-card h3 { margin: 0 0 10px; }
.rys-industry-card p { margin: 0; color: #64748b; }

/* Dynamic pages */
.rys-page-hero { background: #111827; color: #fff; position: relative; overflow: hidden; }
.rys-page-hero__media { position: absolute; inset: 0; background-color: #1f2937; background-size: cover; background-position: center; }
.rys-page-hero__media:not(.has-image)::after { content: "Page Hero Image Placeholder"; position: absolute; right: 8vw; top: 50%; color: rgba(255,255,255,.68); border: 1px dashed rgba(255,255,255,.35); border-radius: 12px; padding: 14px 18px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.rys-page-hero__media::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,8,12,.9), rgba(5,8,12,.68) 52%, rgba(5,8,12,.3)); }
.rys-page-hero__inner { position: relative; z-index: 2; padding: 96px 0; max-width: 840px; }
.rys-page-hero h1 { margin: 12px 0 16px; font-size: clamp(46px, 5vw, 80px); line-height: .94; text-transform: uppercase; }
.rys-page-hero p { font-size: 21px; color: #e5e7eb; margin: 0 0 26px; }
.rys-breadcrumbs { color: #cbd5e1; font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.rys-two-col { display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items: start; }
.rys-richtext h2 { font-size: clamp(32px, 4vw, 48px); line-height: 1; margin: 0 0 16px; }
.rys-richtext h3 { font-size: 24px; margin: 28px 0 8px; }
.rys-richtext p, .rys-richtext li { color: #475569; }
.rys-richtext ul { padding-left: 20px; }
.rys-highlight-box { background: #fff7ed; border: 1px solid #fed7aa; border-left: 5px solid var(--rys-orange); padding: 24px; border-radius: 12px; }
.rys-table-wrap { overflow-x: auto; }
.rys-comparison-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 8px 30px rgba(15,23,42,.06); }
.rys-comparison-table th, .rys-comparison-table td { padding: 16px 18px; border-bottom: 1px solid #e5e7eb; text-align: left; }
.rys-comparison-table th { background: #0f172a; color: #fff; text-transform: uppercase; font-size: 13px; letter-spacing: .08em; }
.rys-faq-list { display: grid; gap: 14px; }
.rys-faq-item { background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; padding: 22px; }
.rys-faq-item h3 { margin: 0 0 8px; font-size: 20px; }
.rys-faq-item p { margin: 0; color: #475569; }

/* Product single */
.rys-product-single { background: #fff; padding: 72px 0; }
.rys-product-single__grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 44px; align-items: stretch; }
.rys-product-media { height: auto; min-height: 460px; border: 1px solid #e5e7eb; border-radius: 14px; }
.rys-product-summary h1 { margin: 12px 0; font-size: clamp(44px, 5vw, 72px); line-height: .95; text-transform: uppercase; }
.rys-product-lead { font-size: 20px; color: #475569; }
.rys-product-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 28px 0; }
.rys-product-actions .rys-btn--ghost { color: #111827; }
.rys-spec-table { display: grid; grid-template-columns: repeat(2, 1fr); border: 1px solid #e5e7eb; border-radius: 12px; overflow: hidden; }
.rys-spec-table div { padding: 18px; border-right: 1px solid #e5e7eb; border-bottom: 1px solid #e5e7eb; }
.rys-spec-table b { display: block; text-transform: uppercase; color: #111827; font-size: 12px; letter-spacing: .08em; }
.rys-spec-table span { color: #475569; }
.rys-product-body { padding: 68px 0; display: grid; grid-template-columns: 1fr 320px; gap: 40px; }
.rys-side-cta { position: sticky; top: 160px; background: #111827; color: #fff; border-radius: 14px; padding: 26px; align-self: start; }
.rys-side-cta h3 { margin-top: 0; }
.rys-side-cta p { color: #cbd5e1; }

/* Forms */
.rys-form-shell { background: #fff; border-radius: 18px; box-shadow: var(--rys-shadow); border: 1px solid #e5e7eb; padding: 34px; }
.rys-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.rys-field { display: flex; flex-direction: column; gap: 7px; }
.rys-field--full { grid-column: 1 / -1; }
.rys-field label { font-weight: 850; color: #111827; }
.rys-field input, .rys-field textarea, .rys-field select { width: 100%; border: 1px solid #cbd5e1; border-radius: 8px; min-height: 50px; padding: 12px 14px; background: #fff; }
.rys-field textarea { min-height: 130px; resize: vertical; }
.rys-form-note { color: #64748b; font-size: 14px; }
.rys-success { padding: 18px 20px; background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; border-radius: 12px; margin-bottom: 20px; font-weight: 800; }
.rys-quote-basket-panel { background: #0f172a; color: #fff; border-radius: 14px; padding: 22px; margin-bottom: 22px; }
.rys-quote-basket-panel ul { margin: 12px 0 0; padding-left: 20px; color: #e5e7eb; }
.rys-floating-quote { position: fixed; right: 22px; bottom: 22px; z-index: 120; background: #071018; color: #fff; border: 1px solid rgba(255,255,255,.12); border-radius: 16px; box-shadow: var(--rys-shadow); padding: 14px 16px; display: none; max-width: 310px; }
.rys-floating-quote.is-visible { display: block; }
.rys-floating-quote strong { display: block; }
.rys-floating-quote .rys-btn { margin-top: 10px; min-height: 42px; width: 100%; }

/* Footer */
.rys-site-footer { background: #05080c; color: #fff; }
.rys-footer-cta { transform: translateY(-34px); background: linear-gradient(135deg, #f97316, #c2410c); border-radius: 14px; padding: 36px; display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; box-shadow: 0 22px 60px rgba(249,115,22,.24); }
.rys-footer-cta h2 { margin: 6px 0 8px; font-size: clamp(30px, 4vw, 48px); line-height: 1; }
.rys-footer-cta p { margin: 0; color: #fff7ed; max-width: 760px; }
.rys-footer-cta .rys-eyebrow { color: #fff; }
.rys-footer-cta .rys-eyebrow::before { background: #fff; }
.rys-footer-main { padding: 18px 0 52px; display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 42px; }
.rys-footer-main h3 { margin: 0 0 16px; color: #fff; }
.rys-footer-main a, .rys-footer-main span { display: block; color: #cbd5e1; margin: 10px 0; }
.rys-footer-main a:hover { color: var(--rys-orange); }
.rys-footer-brand p { color: #cbd5e1; max-width: 460px; }
.rys-footer-powered { color: var(--rys-orange) !important; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.rys-footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 22px 0; display: flex; justify-content: space-between; gap: 20px; color: #94a3b8; font-size: 14px; }

/* Archive / fallback */
.rys-archive, .rys-article, .rys-empty-state, .rys-fallback-content { padding: 76px 0; }
.rys-archive header, .rys-article__header { margin-bottom: 32px; }
.rys-archive h1, .rys-article h1, .rys-empty-state h1 { font-size: clamp(42px, 5vw, 76px); line-height: .95; text-transform: uppercase; margin: 12px 0; }
.rys-empty-state { text-align: center; min-height: 58vh; }
.rys-empty-state .rys-btn { margin: 8px; }
.rys-empty-state .rys-btn--ghost { color: #111827; }

@media (max-width: 1200px) {
  .rys-header-top__inner { grid-template-columns: 300px 1fr auto; }
  .rys-header-actions .rys-header-action:nth-child(2) { display: none; }
  .rys-trust-row { display: none; }
  .rys-category-grid, .rys-product-grid--four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rys-promise-strip { grid-template-columns: repeat(2, 1fr); }
  .rys-industries-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .rys-header-top__inner { grid-template-columns: 1fr auto; gap: 16px; min-height: 76px; }
  .rys-header-search, .rys-header-actions { display: none; }
  .rys-mobile-toggle { display: inline-flex; }
  .rys-header-nav { display: none; }
  .rys-header-nav.is-open { display: block; }
  .rys-header-nav__inner { display: block; padding: 16px 0; }
  .rys-menu { display: block; }
  .rys-menu > li > a { padding: 14px 0; }
  .rys-menu .sub-menu { position: static; opacity: 1; visibility: visible; transform: none; background: rgba(255,255,255,.06); box-shadow: none; color: #fff; border-radius: 10px; }
  .rys-menu .sub-menu a { color: #e5e7eb; }
  .rys-hero, .rys-hero__inner { min-height: 560px; }
  .rys-hero__inner { grid-template-columns: 1fr; }
  .rys-hero__stats { position: static; margin-top: 26px; }
  .rys-section__head, .rys-two-col, .rys-product-single__grid, .rys-product-body, .rys-footer-cta, .rys-footer-main { grid-template-columns: 1fr; display: grid; }
  .rys-card-grid, .rys-resource-grid, .rys-product-grid { grid-template-columns: 1fr; }
  .rys-product-media { min-height: 320px; }
  .rys-side-cta { position: static; }
}
@media (max-width: 640px) {
  .rys-container { width: min(100% - 28px, var(--rys-container)); }
  .rys-brand__mark { width: 46px; height: 46px; font-size: 22px; }
  .rys-brand__text strong { font-size: 19px; }
  .rys-brand__text small { font-size: 10px; }
  .rys-hero h1 { font-size: 54px; }
  .rys-category-grid, .rys-promise-strip, .rys-industries-grid, .rys-form-grid, .rys-spec-table { grid-template-columns: 1fr; }
  .rys-category-card__content { max-width: 74%; }
  .rys-footer-bottom { display: block; }
}
