diff --git a/index.html b/index.html index 48d2766..ecc87e5 100644 --- a/index.html +++ b/index.html @@ -8,26 +8,27 @@ name="description" content="IQON helps organizations align technology decisions with measurable business outcomes through strategy, architecture, and transformation consulting." /> + - + -
- +
+ - Book Discovery Call + Book Discovery Call
@@ -68,8 +68,11 @@ predictable outcomes for leadership teams.

@@ -84,29 +87,29 @@
+ 02

Industry Specific Services

Domain-led delivery models for regulated and high-complexity sectors.

- View industry experience
@@ -176,7 +179,10 @@

Need clarity on your next IT move?

We can turn ambiguity into a practical roadmap in a two-week advisory sprint.

- Talk to IQON + + Talk to IQON + +
@@ -207,11 +213,11 @@ - + diff --git a/reports/deployment-readiness-2026-05-20.md b/reports/deployment-readiness-2026-05-20.md index 01b4393..7e156a3 100644 --- a/reports/deployment-readiness-2026-05-20.md +++ b/reports/deployment-readiness-2026-05-20.md @@ -138,6 +138,20 @@ Final signal: - `/homepage/` redirected to `/`. - `/services-solutions/` redirected to `/services/`. +## Live Redesign Switch + +After owner feedback that the first static upload was not the intended design, live was rolled back to the WordPress entrypoint first, then switched to the `new_redesign` visual direction. + +Observed signal: + +- `https://iqon.com/` returns the dark `new_redesign` homepage. +- Live HTML contains `theme-color` `#09090b`. +- Live HTML contains `.topbar`, `.hero-cloud`, and `.skip-link`. +- `/styles.css` returns `200 text/css`. +- `/script.js` returns `200 application/javascript`. +- `scripts/iqon-phase1-verify.sh https://iqon.com` returns `[OK]`. +- Headless screenshot captured at `reports/screenshots/2026-05-20/live-new-redesign-home.png`. + --- *Created: 20 May 2026* diff --git a/reports/screenshots/2026-05-20/live-new-redesign-home.png b/reports/screenshots/2026-05-20/live-new-redesign-home.png new file mode 100644 index 0000000..2e9b380 Binary files /dev/null and b/reports/screenshots/2026-05-20/live-new-redesign-home.png differ diff --git a/script.js b/script.js index 5804a18..b132fbd 100644 --- a/script.js +++ b/script.js @@ -1,49 +1,115 @@ +/* ===== IQON — Interactive Scripts ===== */ + +// ——— Scroll Reveal ——— const reveals = document.querySelectorAll(".reveal"); -const observer = - "IntersectionObserver" in window - ? new IntersectionObserver( - (entries) => { - entries.forEach((entry) => { - if (entry.isIntersecting) { - entry.target.classList.add("on"); - observer.unobserve(entry.target); - } - }); - }, - { threshold: 0.18 } - ) - : null; +const revealObserver = new IntersectionObserver( + (entries) => { + entries.forEach((entry) => { + if (entry.isIntersecting) { + entry.target.classList.add("on"); + revealObserver.unobserve(entry.target); + } + }); + }, + { threshold: 0.12, rootMargin: "0px 0px -40px 0px" } +); -reveals.forEach((item, idx) => { - item.style.transitionDelay = `${Math.min(idx * 45, 280)}ms`; - if (observer) { - observer.observe(item); - } else { - item.classList.add("on"); +reveals.forEach((item) => { + revealObserver.observe(item); +}); + +// ——— Active Nav Section Tracking ——— +const navLinks = document.querySelectorAll(".main-nav a"); +const sectionIds = ["approach", "services", "cases", "contacts"]; + +const sectionObserver = new IntersectionObserver( + (entries) => { + entries.forEach((entry) => { + if (entry.isIntersecting) { + navLinks.forEach((link) => { + link.classList.toggle( + "active", + link.getAttribute("href") === `#${entry.target.id}` + ); + }); + } + }); + }, + { threshold: 0.35, rootMargin: "-80px 0px 0px 0px" } +); + +sectionIds.forEach((id) => { + const section = document.getElementById(id); + if (section) { + sectionObserver.observe(section); } }); -const navLinks = document.querySelectorAll(".main-nav a"); +// ——— Navbar Shrink on Scroll ——— +const topbar = document.getElementById("topbar") || document.querySelector(".topbar"); +let lastScrollY = 0; +let ticking = false; -if ("IntersectionObserver" in window) { - const sectionObserver = new IntersectionObserver( +function handleScroll() { + if (!topbar) { + ticking = false; + return; + } + const scrolled = window.scrollY > 60; + topbar.classList.toggle("scrolled", scrolled); + ticking = false; +} + +window.addEventListener("scroll", () => { + if (!ticking) { + requestAnimationFrame(handleScroll); + ticking = true; + } +}); + +// ——— Smooth Scroll for Anchor Links ——— +document.querySelectorAll('a[href^="#"]').forEach((anchor) => { + anchor.addEventListener("click", function (e) { + const target = document.querySelector(this.getAttribute("href")); + if (target) { + e.preventDefault(); + const offset = (topbar ? topbar.offsetHeight : 0) + 12; + const top = target.getBoundingClientRect().top + window.scrollY - offset; + window.scrollTo({ top, behavior: "smooth" }); + } + }); +}); + +// ——— Chart Bar Animation ——— +const chartBox = document.querySelector(".chart-box"); +if (chartBox) { + const chartObserver = new IntersectionObserver( (entries) => { entries.forEach((entry) => { if (entry.isIntersecting) { - navLinks.forEach((link) => { - link.classList.toggle("active", link.getAttribute("href") === `#${entry.target.id}`); + const bars = chartBox.querySelectorAll("span"); + bars.forEach((bar, i) => { + bar.style.transition = `height 0.8s ${0.1 + i * 0.08}s cubic-bezier(0.34, 1.56, 0.64, 1)`; + bar.style.height = bar.style.height; // trigger reflow }); + chartObserver.unobserve(entry.target); } }); }, - { threshold: 0.55 } + { threshold: 0.5 } ); - - ["approach", "services", "cases", "contacts"].forEach((id) => { - const section = document.getElementById(id); - if (section) { - sectionObserver.observe(section); - } - }); + chartObserver.observe(chartBox); } + +// ——— Service Tile Hover Glow ——— +const serviceTiles = document.querySelectorAll(".service-tile"); +serviceTiles.forEach((tile) => { + tile.addEventListener("mousemove", (e) => { + const rect = tile.getBoundingClientRect(); + const x = e.clientX - rect.left; + const y = e.clientY - rect.top; + tile.style.setProperty("--mouse-x", `${x}px`); + tile.style.setProperty("--mouse-y", `${y}px`); + }); +}); diff --git a/styles.css b/styles.css index 8f73c70..e29c8f8 100644 --- a/styles.css +++ b/styles.css @@ -1,222 +1,419 @@ +/* ===== DESIGN SYSTEM ===== */ :root { - --bg: #f1f1ef; - --surface: #ffffff; - --ink: #0a0a0a; - --muted: #666666; - --line: #e3e3dd; + --bg: #09090b; + --bg-subtle: #111114; + --surface: #18181b; + --surface-hover: #1f1f23; + --ink: #fafafa; + --ink-secondary: #a1a1aa; + --muted: #71717a; + --line: rgba(255, 255, 255, 0.06); + --line-strong: rgba(255, 255, 255, 0.12); --accent: #ffd000; + --accent-dim: #c9a400; + --accent-glow: rgba(255, 208, 0, 0.15); + --accent-glow-strong: rgba(255, 208, 0, 0.25); + --radius-sm: 8px; + --radius-md: 12px; + --radius-lg: 20px; + --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1); + --transition-smooth: 0.45s cubic-bezier(0.22, 1, 0.36, 1); + --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1); } -* { +/* ===== RESET & BASE ===== */ +*, +*::before, +*::after { box-sizing: border-box; } +html { + scroll-behavior: smooth; +} + html, body { margin: 0; padding: 0; - overflow-x: hidden; } body { - font-family: "Space Grotesk", sans-serif; - background: radial-gradient(circle at 85% -20%, #fff8d1 0%, transparent 46%), var(--bg); + font-family: "Space Grotesk", system-ui, sans-serif; + background: var(--bg); color: var(--ink); - line-height: 1.5; + line-height: 1.6; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + overflow-x: hidden; } +/* Ambient background glow */ +body::before { + content: ""; + position: fixed; + top: -30%; + right: -10%; + width: 700px; + height: 700px; + background: radial-gradient(circle, var(--accent-glow) 0%, transparent 65%); + pointer-events: none; + z-index: 0; +} + +body::after { + content: ""; + position: fixed; + bottom: -20%; + left: -15%; + width: 500px; + height: 500px; + background: radial-gradient(circle, rgba(99, 102, 241, 0.06) 0%, transparent 65%); + pointer-events: none; + z-index: 0; +} + +/* ===== TOPBAR / NAVIGATION ===== */ .topbar { - position: sticky; + position: fixed; top: 0; - z-index: 20; + left: 0; + right: 0; + z-index: 100; display: grid; grid-template-columns: auto 1fr auto; gap: 1.5rem; align-items: center; - padding: 1rem 2rem; - background: rgba(241, 241, 239, 0.96); + padding: 1rem 2.5rem; + background: rgba(9, 9, 11, 0.72); border-bottom: 1px solid var(--line); - backdrop-filter: blur(8px); + backdrop-filter: blur(20px) saturate(1.6); + -webkit-backdrop-filter: blur(20px) saturate(1.6); + transition: padding var(--transition-fast), background var(--transition-fast), + box-shadow var(--transition-fast); +} + +.topbar.scrolled { + padding-top: 0.6rem; + padding-bottom: 0.6rem; + background: rgba(9, 9, 11, 0.92); + box-shadow: 0 1px 24px rgba(0, 0, 0, 0.5); } .brand { display: inline-flex; align-items: center; - gap: 0.7rem; + gap: 0.75rem; text-decoration: none; color: var(--ink); } .brand-mark { - width: 1.7rem; - height: 1.7rem; + width: 2rem; + height: 2rem; display: block; flex: 0 0 auto; + filter: drop-shadow(0 0 8px var(--accent-glow)); + transition: filter var(--transition-fast); +} + +.brand:hover .brand-mark { + filter: drop-shadow(0 0 14px var(--accent-glow-strong)); } .brand-name { font-family: "Sora", sans-serif; - font-size: 2rem; + font-size: 1.7rem; font-weight: 700; text-transform: lowercase; line-height: 1; + letter-spacing: -0.01em; } .main-nav { display: flex; justify-content: center; flex-wrap: wrap; - gap: 0.3rem; + gap: 0.2rem; } .main-nav a { text-decoration: none; - color: #232323; - font-size: 0.82rem; + color: var(--ink-secondary); + font-size: 0.78rem; font-weight: 500; - letter-spacing: 0.08em; + letter-spacing: 0.1em; text-transform: uppercase; - padding: 0.5rem 0.75rem; - border-bottom: 2px solid transparent; + padding: 0.55rem 0.9rem; + border-radius: var(--radius-sm); + position: relative; + transition: color var(--transition-fast), background var(--transition-fast); } -.main-nav a:hover, -.main-nav a.active, -.main-nav a[aria-current="page"] { - border-bottom-color: var(--accent); +.main-nav a::after { + content: ""; + position: absolute; + bottom: 2px; + left: 50%; + width: 0; + height: 2px; + background: var(--accent); + transition: width var(--transition-smooth), left var(--transition-smooth); + border-radius: 1px; +} + +.main-nav a:hover { + color: var(--ink); + background: rgba(255, 255, 255, 0.04); +} + +.main-nav a:hover::after, +.main-nav a.active::after { + width: 60%; + left: 20%; +} + +.main-nav a.active { + color: var(--accent); } .nav-cta { text-decoration: none; - color: var(--ink); + color: var(--bg); background: var(--accent); - border: 1px solid #d2ab00; - font-size: 0.8rem; - letter-spacing: 0.08em; + font-size: 0.76rem; + letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; - padding: 0.7rem 1rem; + padding: 0.65rem 1.2rem; + border-radius: var(--radius-sm); + border: none; + transition: background var(--transition-fast), box-shadow var(--transition-fast), + transform var(--transition-fast); + box-shadow: 0 0 16px var(--accent-glow); +} + +.nav-cta:hover { + background: #ffe54d; + box-shadow: 0 0 28px var(--accent-glow-strong); + transform: translateY(-1px); } .skip-link { position: absolute; left: -999px; top: 0.75rem; - z-index: 50; + z-index: 1000; padding: 0.65rem 0.9rem; - background: var(--ink); - color: #fff; + background: var(--accent); + color: var(--bg); text-decoration: none; font-weight: 700; + border-radius: var(--radius-sm); } .skip-link:focus { left: 1rem; } +/* ===== HERO SECTION ===== */ .hero { display: grid; - grid-template-columns: 1.2fr 1fr; - min-height: 74vh; - border-bottom: 2px solid var(--accent); + grid-template-columns: 1.15fr 1fr; + min-height: 100vh; + padding-top: 4rem; /* offset for fixed navbar */ + position: relative; } .hero-copy { - padding: 5rem 3rem; - background: var(--surface); + padding: 6rem 4rem 4rem; + display: flex; + flex-direction: column; + justify-content: center; + position: relative; + z-index: 1; } .eyebrow { - margin: 0 0 1.1rem; - font-size: 0.68rem; - letter-spacing: 0.26em; + margin: 0 0 1.3rem; + font-size: 0.7rem; + letter-spacing: 0.28em; text-transform: uppercase; - color: #5a5a5a; + color: var(--accent); + font-weight: 500; } h1 { - margin: 0 0 1.3rem; - max-width: min(16ch, 100%); + margin: 0 0 1.6rem; + max-width: 14ch; font-family: "Sora", sans-serif; - font-size: clamp(2rem, 3.2vw, 3.8rem); - line-height: 1.03; + font-size: clamp(2.2rem, 3.6vw, 4.2rem); + line-height: 1.04; text-transform: uppercase; + font-weight: 800; + letter-spacing: -0.02em; + background: linear-gradient(135deg, #ffffff 0%, #d4d4d8 100%); + -webkit-background-clip: text; + -webkit-text-fill-color: transparent; + background-clip: text; } .lead { - max-width: 55ch; - margin-bottom: 2rem; - color: var(--muted); + max-width: 50ch; + margin-bottom: 2.4rem; + color: var(--ink-secondary); + font-size: 1.05rem; + line-height: 1.7; } .hero-actions { display: flex; - gap: 0.7rem; + gap: 1rem; flex-wrap: wrap; } .btn { - display: inline-block; + display: inline-flex; + align-items: center; + gap: 0.5rem; text-decoration: none; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; - padding: 0.85rem 1.15rem; - border: 1px solid var(--ink); + font-weight: 600; + padding: 0.9rem 1.6rem; + border: 1px solid var(--line-strong); + border-radius: var(--radius-sm); + transition: all var(--transition-fast); + cursor: pointer; } .btn-solid { background: var(--accent); - border-color: #d2ab00; - color: var(--ink); + border-color: var(--accent); + color: var(--bg); + box-shadow: 0 0 20px var(--accent-glow), inset 0 1px 0 rgba(255, 255, 255, 0.2); +} + +.btn-solid:hover { + background: #ffe54d; + box-shadow: 0 0 36px var(--accent-glow-strong); + transform: translateY(-2px); } .btn-outline { + color: var(--ink-secondary); + background: rgba(255, 255, 255, 0.03); + backdrop-filter: blur(4px); +} + +.btn-outline:hover { color: var(--ink); + background: rgba(255, 255, 255, 0.08); + border-color: rgba(255, 255, 255, 0.2); + transform: translateY(-2px); } .btn-dark { background: var(--ink); - color: #fff; + color: var(--bg); border-color: var(--ink); } +.btn-dark:hover { + background: #e4e4e7; + transform: translateY(-2px); + box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1); +} + +/* Hero Cloud / Tag cloud */ .hero-cloud { - background: #050505; - color: #2e2e35; - padding: 2.2rem; + background: var(--bg-subtle); + position: relative; + padding: 3rem 2.5rem; display: grid; align-content: center; - gap: 0.4rem; + gap: 0.15rem; text-transform: uppercase; font-family: "Sora", sans-serif; font-weight: 800; + overflow: hidden; +} + +.hero-cloud::before { + content: ""; + position: absolute; + inset: 0; + background: linear-gradient( + 180deg, + transparent 0%, + rgba(255, 208, 0, 0.04) 60%, + rgba(255, 208, 0, 0.08) 100% + ); + pointer-events: none; } .hero-cloud span { - font-size: clamp(1.9rem, 4.2vw, 4.1rem); - line-height: 0.95; - letter-spacing: -0.02em; + font-size: clamp(2rem, 4.5vw, 4.4rem); + line-height: 1; + letter-spacing: -0.03em; + color: rgba(255, 255, 255, 0.06); + transition: color 0.6s ease; +} + +.hero-cloud span:hover { + color: rgba(255, 255, 255, 0.15); } .hero-cloud strong { - margin-top: 0.6rem; + margin-top: 0.8rem; color: var(--accent); - font-size: clamp(2rem, 5vw, 5.1rem); - line-height: 0.94; + font-size: clamp(2.2rem, 5.2vw, 5.4rem); + line-height: 0.95; letter-spacing: -0.03em; + text-shadow: 0 0 60px var(--accent-glow-strong); + position: relative; + z-index: 1; } +/* ===== SERVICE STRIP ===== */ .service-strip { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); + border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); + position: relative; + z-index: 1; } .service-tile { - background: #e8e8e6; - border-right: 1px solid #d6d6d2; - padding: 1.3rem 1rem 1.7rem; + background: var(--surface); + border-right: 1px solid var(--line); + padding: 2rem 1.3rem 2.4rem; + position: relative; + overflow: hidden; + transition: background var(--transition-fast), transform var(--transition-fast); +} + +.service-tile::before { + content: ""; + position: absolute; + top: 0; + left: 0; + right: 0; + height: 2px; + background: var(--accent); + transform: scaleX(0); + transform-origin: left; + transition: transform var(--transition-smooth); +} + +.service-tile:hover { + background: var(--surface-hover); +} + +.service-tile:hover::before { + transform: scaleX(1); } .service-tile:last-child { @@ -224,133 +421,63 @@ h1 { } .service-tile h2 { - margin: 0 0 0.7rem; + margin: 0 0 0.8rem; font-family: "Sora", sans-serif; - font-size: 1.1rem; - line-height: 1.15; + font-size: 1rem; + line-height: 1.25; + font-weight: 600; + color: var(--ink); } .service-tile p { margin: 0; - color: #555; - font-size: 0.9rem; -} - -.service-tile a { - display: inline-block; - margin-top: 1rem; - color: var(--ink); - font-size: 0.78rem; - font-weight: 700; - letter-spacing: 0.08em; - text-transform: uppercase; - text-decoration: none; -} - -.page-hero { - padding: 5rem 2rem 4rem; - background: var(--surface); - border-bottom: 2px solid var(--accent); -} - -.page-hero h1 { - max-width: min(18ch, 100%); -} - -.page-hero .lead { - max-width: 68ch; -} - -.content-grid, -.detail-grid { - display: grid; - gap: 1px; - background: var(--line); - border-top: 1px solid var(--line); - border-bottom: 1px solid var(--line); -} - -.content-grid { - grid-template-columns: repeat(3, minmax(0, 1fr)); -} - -.detail-grid { - grid-template-columns: repeat(2, minmax(0, 1fr)); -} - -.content-card, -.detail-panel { - background: var(--surface); - padding: 1.5rem; -} - -.content-card h2, -.detail-panel h2 { - margin: 0 0 0.7rem; - font-family: "Sora", sans-serif; - font-size: 1.2rem; - line-height: 1.15; -} - -.content-card p, -.detail-panel p, -.detail-panel li { color: var(--muted); + font-size: 0.88rem; + line-height: 1.6; } -.content-card a { - display: inline-block; - margin-top: 0.8rem; - color: var(--ink); - font-weight: 700; - text-decoration: none; -} - -.page-section { - padding: 4rem 2rem; -} - -.page-section h2 { - margin: 0 0 1rem; +/* Service icon numbers */ +.service-tile .service-num { + display: block; font-family: "Sora", sans-serif; - font-size: clamp(1.5rem, 2.4vw, 2.5rem); + font-size: 2.4rem; + font-weight: 800; + color: rgba(255, 208, 0, 0.08); + line-height: 1; + margin-bottom: 1rem; + transition: color var(--transition-fast); } -.page-section p { - max-width: 72ch; - color: var(--muted); +.service-tile:hover .service-num { + color: rgba(255, 208, 0, 0.18); } -.contact-list { - margin: 0; - padding: 0; - list-style: none; +/* ===== METHOD SECTION ===== */ +.method { + padding: 6rem 2.5rem; + position: relative; + z-index: 1; } -.contact-list li { - margin-bottom: 0.7rem; -} - -a:focus-visible, -button:focus-visible, -input:focus-visible, -textarea:focus-visible, -select:focus-visible { - outline: 3px solid var(--accent); - outline-offset: 3px; -} - -.method, .cases { - padding: 4.6rem 2rem; + padding: 6rem 2.5rem; +} + +.section-head { + margin-bottom: 2.5rem; } .section-head h3 { - margin: 0 0 2rem; - max-width: 28ch; + margin: 0; + max-width: 26ch; font-family: "Sora", sans-serif; - font-size: clamp(1.6rem, 2.6vw, 2.7rem); - line-height: 1.12; + font-size: clamp(1.7rem, 2.8vw, 2.8rem); + line-height: 1.14; + font-weight: 700; + background: linear-gradient(135deg, #fafafa 0%, #a1a1aa 100%); + -webkit-background-clip: text; + -webkit-text-fill-color: transparent; + background-clip: text; } .steps { @@ -362,158 +489,252 @@ select:focus-visible { gap: 1px; background: var(--line); border: 1px solid var(--line); + border-radius: var(--radius-md); + overflow: hidden; } .steps li { - background: #fff; - padding: 1.4rem; + background: var(--surface); + padding: 1.8rem 1.5rem; display: grid; gap: 0.8rem; + transition: background var(--transition-fast); + position: relative; +} + +.steps li::after { + content: ""; + position: absolute; + bottom: 0; + left: 1.5rem; + right: 1.5rem; + height: 1px; + background: linear-gradient(90deg, transparent, var(--accent-dim), transparent); + opacity: 0; + transition: opacity var(--transition-smooth); +} + +.steps li:hover { + background: var(--surface-hover); +} + +.steps li:hover::after { + opacity: 0.5; } .steps span { font-family: "Sora", sans-serif; - color: #adadad; - font-size: 0.82rem; - letter-spacing: 0.16em; + color: var(--accent-dim); + font-size: 0.78rem; + letter-spacing: 0.18em; + font-weight: 600; + opacity: 0.6; } .steps h4 { margin: 0 0 0.45rem; text-transform: uppercase; font-family: "Sora", sans-serif; + font-size: 1.1rem; + font-weight: 700; + color: var(--ink); } .steps p { margin: 0; color: var(--muted); - font-size: 0.92rem; + font-size: 0.9rem; + line-height: 1.6; } +/* ===== CASES / SUCCESS STORIES ===== */ .cases { - background: #f7f7f5; + background: var(--bg-subtle); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); + position: relative; + z-index: 1; } .case-grid { display: grid; - grid-template-columns: 300px 1fr; - gap: 2rem; + grid-template-columns: 320px 1fr; + gap: 2.5rem; align-items: start; } .case-visual { - background: #ffd000; - border: 8px solid #f0f0ee; - box-shadow: 0 0 0 1px #dfdfd8; - min-height: 220px; + background: linear-gradient(135deg, var(--accent) 0%, #f0b800 100%); + border: 1px solid rgba(255, 208, 0, 0.3); + border-radius: var(--radius-md); + min-height: 240px; display: grid; place-items: center; + position: relative; + overflow: hidden; + box-shadow: 0 0 40px var(--accent-glow), 0 8px 24px rgba(0, 0, 0, 0.3); +} + +.case-visual::before { + content: ""; + position: absolute; + inset: 0; + background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.15) 100%); + pointer-events: none; } .chart-box { width: 72%; - height: 110px; + height: 120px; display: flex; align-items: flex-end; - gap: 0.35rem; + gap: 0.4rem; + position: relative; + z-index: 1; } .chart-box span { flex: 1; - background: #0f0f0f; + background: var(--bg); + border-radius: 3px 3px 0 0; + transition: height var(--transition-spring); } -.chart-box span:nth-child(1) { - height: 25%; -} -.chart-box span:nth-child(2) { - height: 35%; -} -.chart-box span:nth-child(3) { - height: 48%; -} -.chart-box span:nth-child(4) { - height: 62%; -} -.chart-box span:nth-child(5) { - height: 76%; -} -.chart-box span:nth-child(6) { - height: 92%; -} +.chart-box span:nth-child(1) { height: 25%; } +.chart-box span:nth-child(2) { height: 35%; } +.chart-box span:nth-child(3) { height: 48%; } +.chart-box span:nth-child(4) { height: 62%; } +.chart-box span:nth-child(5) { height: 76%; } +.chart-box span:nth-child(6) { height: 92%; } .case-copy p { margin-top: 0; - color: #4f4f4f; + color: var(--ink-secondary); + line-height: 1.7; } .case-copy ul { - margin: 1rem 0 0; - padding-left: 1.1rem; + margin: 1.2rem 0 0; + padding-left: 0; + list-style: none; } .case-copy li { - margin-bottom: 0.5rem; + margin-bottom: 0.7rem; + padding-left: 1.6rem; + position: relative; + color: var(--ink-secondary); } +.case-copy li::before { + content: "→"; + position: absolute; + left: 0; + color: var(--accent); + font-weight: 700; +} + +/* ===== CTA BAND ===== */ .cta-band { - padding: 4.3rem 2rem; - background: linear-gradient(120deg, #ffd000 0%, #ffc200 58%, #fdb600 100%); - border-top: 2px solid #111; + padding: 5.5rem 2.5rem; + background: linear-gradient(135deg, #1a1500 0%, #2a1f00 30%, var(--bg-subtle) 100%); + border-top: 1px solid var(--accent-dim); + position: relative; + z-index: 1; + overflow: hidden; +} + +.cta-band::before { + content: ""; + position: absolute; + top: -60%; + left: 20%; + width: 600px; + height: 600px; + background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%); + pointer-events: none; } .cta-band h3 { - margin: 0 0 0.7rem; + margin: 0 0 0.9rem; font-family: "Sora", sans-serif; - font-size: clamp(1.8rem, 3vw, 3rem); + font-size: clamp(1.9rem, 3.2vw, 3.2rem); text-transform: uppercase; + font-weight: 800; + background: linear-gradient(135deg, var(--accent) 0%, #fff 100%); + -webkit-background-clip: text; + -webkit-text-fill-color: transparent; + background-clip: text; + position: relative; + z-index: 1; } .cta-band p { - margin: 0 0 1.3rem; - max-width: 60ch; + margin: 0 0 1.6rem; + max-width: 55ch; + color: var(--ink-secondary); + font-size: 1.05rem; + position: relative; + z-index: 1; } +.cta-band .btn { + position: relative; + z-index: 1; +} + +/* ===== FOOTER ===== */ footer { - background: #ecece8; - padding: 3rem 2rem 1.3rem; + background: var(--surface); + padding: 4rem 2.5rem 1.5rem; + border-top: 1px solid var(--line); + position: relative; + z-index: 1; } .footer-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); - gap: 1.6rem; - padding-bottom: 1.8rem; - border-bottom: 1px solid #d5d5cf; + gap: 2rem; + padding-bottom: 2.5rem; + border-bottom: 1px solid var(--line); } footer h4 { - margin: 0 0 0.7rem; + margin: 0 0 1rem; font-family: "Sora", sans-serif; text-transform: uppercase; - font-size: 0.92rem; + font-size: 0.82rem; + letter-spacing: 0.12em; + color: var(--accent); + font-weight: 600; } footer ul { margin: 0; - padding-left: 1rem; + padding: 0; + list-style: none; } footer li, footer p { - color: #4b4b4b; - font-size: 0.92rem; - margin: 0.25rem 0; + color: var(--muted); + font-size: 0.9rem; + margin: 0.35rem 0; + line-height: 1.6; } -footer a { - color: inherit; +footer li { + padding-left: 0; + transition: color var(--transition-fast); +} + +footer li:hover { + color: var(--ink-secondary); } .footer-bottom { - padding-top: 0.9rem; + padding-top: 1.2rem; display: flex; justify-content: space-between; gap: 1rem; @@ -522,14 +743,16 @@ footer a { .footer-bottom p { margin: 0; - font-size: 0.8rem; - color: #6a6a67; + font-size: 0.78rem; + color: var(--muted); } +/* ===== REVEAL ANIMATION ===== */ .reveal { opacity: 0; - transform: translateY(24px); - transition: opacity 0.55s ease, transform 0.55s ease; + transform: translateY(30px); + transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), + transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); } .reveal.on { @@ -537,9 +760,49 @@ footer a { transform: translateY(0); } +/* Stagger children in service strip */ +.service-strip .reveal:nth-child(1) { transition-delay: 0ms; } +.service-strip .reveal:nth-child(2) { transition-delay: 60ms; } +.service-strip .reveal:nth-child(3) { transition-delay: 120ms; } +.service-strip .reveal:nth-child(4) { transition-delay: 180ms; } +.service-strip .reveal:nth-child(5) { transition-delay: 240ms; } + +/* ===== GRAIN TEXTURE OVERLAY ===== */ +main::before { + content: ""; + position: fixed; + inset: 0; + background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.025'/%3E%3C/svg%3E"); + background-repeat: repeat; + background-size: 256px; + pointer-events: none; + z-index: 2; + opacity: 0.4; +} + +/* ===== CUSTOM SCROLLBAR ===== */ +::-webkit-scrollbar { + width: 6px; +} + +::-webkit-scrollbar-track { + background: var(--bg); +} + +::-webkit-scrollbar-thumb { + background: rgba(255, 208, 0, 0.2); + border-radius: 3px; +} + +::-webkit-scrollbar-thumb:hover { + background: rgba(255, 208, 0, 0.35); +} + +/* ===== RESPONSIVE ===== */ @media (max-width: 1080px) { .topbar { grid-template-columns: auto 1fr; + padding: 0.9rem 1.5rem; } .nav-cta { @@ -550,13 +813,16 @@ footer a { grid-template-columns: 1fr; } - .service-strip { - grid-template-columns: repeat(2, minmax(0, 1fr)); + .hero-copy { + padding: 7rem 2.5rem 3rem; } - .content-grid, - .detail-grid { - grid-template-columns: 1fr; + .hero-cloud { + min-height: 260px; + } + + .service-strip { + grid-template-columns: repeat(2, minmax(0, 1fr)); } .steps { @@ -570,146 +836,37 @@ footer a { @media (max-width: 720px) { .topbar { - grid-template-columns: 1fr; - gap: 0.7rem; - padding: 0.8rem 1rem; - width: 100vw; - max-width: 100vw; + padding: 0.7rem 1rem; } .main-nav { - justify-content: flex-start; - width: calc(100vw - 2rem); - max-width: calc(100vw - 2rem); - overflow: visible; - flex-wrap: wrap; gap: 0; - padding-bottom: 0.2rem; } .main-nav a { - flex: 0 0 auto; - font-size: 0.65rem; - padding: 0.4rem 0.42rem; + font-size: 0.7rem; + padding: 0.45rem 0.5rem; } - h1 { - font-size: 1.65rem; - line-height: 1.08; - max-width: 100%; + .hero-copy { + padding: 6rem 1.2rem 2.5rem; } - .section-head h3, - .cta-band h3 { - font-size: 1.55rem; - } - - .cta-band h3 { - max-width: 11ch; - line-height: 1.08; - } - - .lead, - .page-hero .lead, - .content-card p, - .detail-panel p, - .detail-panel li { - font-size: 0.95rem; - } - - .hero-actions { - flex-direction: column; - align-items: stretch; - } - - .btn { - width: 100%; - text-align: center; - } - - .hero-copy, .method, .cases, .cta-band, footer { - padding-left: 1rem; - padding-right: 1.5rem; - } - - .hero, - .hero-copy, - .hero-cloud, - .service-strip, - .method, - .cases, - .cta-band, - footer, - .page-hero, - .page-section, - .content-grid, - .detail-grid, - .content-card, - .detail-panel, - .case-copy { - width: 100%; - min-width: 0; - max-width: 100vw; - } - - h1, - h2, - h3, - h4, - p, - li { - overflow-wrap: anywhere; - } - - .hero-copy { - padding-top: 3.4rem; - padding-bottom: 3.1rem; + padding-left: 1.2rem; + padding-right: 1.2rem; } .service-strip { grid-template-columns: 1fr; } - .page-hero, - .page-section { - padding-left: 1rem; - padding-right: 1.5rem; - } - - .content-card, - .detail-panel, - .service-tile { - padding-right: 1.8rem; - } - - .hero-copy > *, - .page-hero > *, - .cta-band > *, - .content-card > *, - .detail-panel > *, - .service-tile > *, - .case-copy > * { - width: calc(100vw - 3.5rem); - max-width: 310px; - } - - .hero-copy h1, - .page-hero h1 { - max-width: 330px; - } - - .hero-copy .lead, - .page-hero .lead { - max-width: 270px; - } - .service-tile { border-right: none; - border-bottom: 1px solid #d6d6d2; + border-bottom: 1px solid var(--line); } .steps { @@ -719,4 +876,14 @@ footer a { .footer-grid { grid-template-columns: 1fr; } + + .case-grid { + gap: 1.5rem; + } +} + +/* ===== SELECTION ===== */ +::selection { + background: var(--accent); + color: var(--bg); }