/* ========================================================= ADAMSPHERE MEDIA — main stylesheet Palette pulled from the brand mark: deep space navy, electric blue, violet, magenta, and chrome/silver. ========================================================= */ :root { /* --- Brand palette --- */ --bg-void: #05070f; --bg-deep: #0a0e1f; --bg-panel: #0e1326; --bg-panel-2: #121834; --blue: #4d7fff; --blue-soft: #6ea0ff; --violet: #9b5cff; --magenta: #ff4fd8; --chrome: #cfd8e8; --chrome-dim: #8b93a8; --text-hi: #f5f7fc; --text-mid: #b7bfd6; --text-low: #7c84a0; --border: rgba(148, 163, 200, 0.16); --border-hi: rgba(180, 195, 255, 0.32); --grad-brand: linear-gradient(95deg, var(--blue) 0%, var(--violet) 55%, var(--magenta) 100%); --grad-brand-soft: linear-gradient(95deg, rgba(77,127,255,0.18) 0%, rgba(155,92,255,0.18) 55%, rgba(255,79,216,0.18) 100%); --shadow-glow: 0 0 80px rgba(107, 100, 255, 0.25); --radius-sm: 10px; --radius-md: 16px; --radius-lg: 26px; --ff-display: "Space Grotesk", "Inter", system-ui, sans-serif; --ff-body: "Inter", system-ui, -apple-system, sans-serif; --container: 1200px; } /* =========================== Reset =========================== */ *, *::before, *::after { box-sizing: border-box; } html { scroll-behavior: smooth; } body { margin: 0; background: var(--bg-void); color: var(--text-mid); font-family: var(--ff-body); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; } img { max-width: 100%; display: block; } a { color: inherit; text-decoration: none; } ul { list-style: none; margin: 0; padding: 0; } h1, h2, h3, h4, h5 { font-family: var(--ff-display); color: var(--text-hi); margin: 0; font-weight: 600; } p { margin: 0; } button, input, textarea { font-family: inherit; } ::selection { background: var(--violet); color: #fff; } @media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; } } .container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; } /* text gradient util */ .text-gradient { background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; } /* =========================== Background FX =========================== */ .bg-fx { position: fixed; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; } #starfield { position: absolute; inset: 0; width: 100%; height: 100%; } .bg-glow { position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.35; } .bg-glow--one { width: 640px; height: 640px; top: -220px; left: -160px; background: radial-gradient(circle, var(--blue) 0%, transparent 70%); } .bg-glow--two { width: 560px; height: 560px; top: 40%; right: -220px; background: radial-gradient(circle, var(--violet) 0%, transparent 70%); } .bg-grid { position: absolute; inset: -1px; background-image: linear-gradient(to right, rgba(148,163,200,0.05) 1px, transparent 1px), linear-gradient(to bottom, rgba(148,163,200,0.05) 1px, transparent 1px); background-size: 56px 56px; mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 40%, transparent 100%); } main, footer, .nav { position: relative; z-index: 1; } /* =========================== Buttons =========================== */ .btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 26px; border-radius: 999px; font-weight: 600; font-size: 0.95rem; border: 1px solid transparent; cursor: pointer; transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease; white-space: nowrap; } .btn svg { flex-shrink: 0; transition: transform 0.25s ease; } .btn--primary { background: var(--grad-brand); color: #fff; box-shadow: 0 8px 30px rgba(107, 100, 255, 0.35); } .btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(107, 100, 255, 0.5); } .btn--primary:hover svg { transform: translateX(3px); } .btn--ghost { background: rgba(255,255,255,0.03); color: var(--text-hi); border-color: var(--border); backdrop-filter: blur(6px); } .btn--ghost:hover { border-color: var(--border-hi); background: rgba(255,255,255,0.06); transform: translateY(-2px); } .btn--sm { padding: 10px 20px; font-size: 0.85rem; } .btn--lg { padding: 16px 32px; font-size: 1rem; } .btn--full { width: 100%; } /* =========================== Nav =========================== */ .nav { position: fixed; top: 0; left: 0; right: 0; z-index: 50; padding-block: 20px; transition: padding 0.35s ease, background 0.35s ease, border-color 0.35s ease; border-bottom: 1px solid transparent; } .nav.is-scrolled { padding-block: 12px; background: rgba(6, 9, 20, 0.72); backdrop-filter: blur(16px) saturate(140%); border-bottom-color: var(--border); } .nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; } .brand { display: flex; align-items: center; gap: 12px; } .brand__mark { height: 40px; width: auto; filter: drop-shadow(0 0 14px rgba(107,100,255,0.45)); } .brand__word { display: flex; flex-direction: column; line-height: 1.05; } .brand__word-main { font-family: var(--ff-display); font-weight: 700; font-size: 1.05rem; letter-spacing: 0.06em; color: var(--text-hi); } .brand__word-sub { font-family: var(--ff-display); font-weight: 600; font-size: 0.68rem; letter-spacing: 0.4em; background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; } .nav__links { display: flex; align-items: center; gap: 36px; } .nav__links a { position: relative; font-size: 0.92rem; font-weight: 500; color: var(--text-mid); transition: color 0.2s ease; padding-block: 4px; } .nav__links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px; background: var(--grad-brand); transition: right 0.25s ease; border-radius: 2px; } .nav__links a:hover { color: var(--text-hi); } .nav__links a:hover::after { right: 0; } .nav__actions { display: flex; align-items: center; gap: 18px; } .nav__toggle { display: none; position: relative; z-index: 61; /* stay above .nav__links (z-index: 60) so it's clickable/visible when the menu is open */ flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; border: 1px solid var(--border); border-radius: 10px; background: var(--bg-panel-2); cursor: pointer; } .nav__toggle span { width: 18px; height: 2px; margin-inline: auto; background: var(--text-hi); transition: transform 0.25s ease, opacity 0.25s ease; } .nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); } .nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; } .nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); } /* =========================== Eyebrow / section head =========================== */ .eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: var(--ff-display); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--blue-soft); margin-bottom: 18px; } .eyebrow__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--grad-brand); box-shadow: 0 0 12px var(--violet); flex-shrink: 0; } .section-head { max-width: 640px; margin-bottom: 56px; } .section-title { font-size: clamp(1.9rem, 3.6vw, 2.75rem); line-height: 1.15; margin-bottom: 18px; letter-spacing: -0.01em; } .section-lede { font-size: 1.05rem; color: var(--text-mid); max-width: 54ch; } section { padding-block: 120px; } @media (max-width: 720px) { section { padding-block: 80px; } } /* =========================== Hero =========================== */ .hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding-top: 140px; padding-bottom: 80px; } .hero__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; align-items: center; gap: 48px; } .hero__title { font-size: clamp(2.5rem, 5.4vw, 4.2rem); line-height: 1.08; letter-spacing: -0.02em; margin-bottom: 26px; } .hero__lede { font-size: 1.15rem; max-width: 52ch; margin-bottom: 40px; } .hero__cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 64px; } .hero__stats { display: grid; grid-template-columns: repeat(4, auto); gap: 32px; } .stat { display: flex; flex-direction: column; } .stat__num, .stat__suffix { font-family: var(--ff-display); font-size: 1.9rem; font-weight: 700; color: var(--text-hi); display: inline; } .stat__label { display: block; font-size: 0.8rem; color: var(--text-low); margin-top: 4px; max-width: 12ch; } .hero__visual { position: relative; display: flex; align-items: center; justify-content: center; aspect-ratio: 1 / 1; } .hero__logo-wrap { position: relative; width: 78%; animation: float 7s ease-in-out infinite; } .hero__logo { width: 100%; filter: drop-shadow(0 20px 60px rgba(107, 100, 255, 0.45)); } .orbit-ring { position: absolute; border-radius: 50%; border: 1px solid var(--border); } .orbit-ring--a { inset: 4%; animation: spin 30s linear infinite; border-style: dashed; } .orbit-ring--b { inset: 14%; border-color: var(--border-hi); animation: spin 22s linear infinite reverse; } @keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-18px); } } @keyframes spin { to { transform: rotate(360deg); } } .scroll-cue { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); opacity: 0.7; transition: opacity 0.2s ease; } .scroll-cue:hover { opacity: 1; } .scroll-cue__mouse { width: 24px; height: 38px; border: 2px solid var(--chrome-dim); border-radius: 14px; display: block; position: relative; } .scroll-cue__mouse span { position: absolute; top: 6px; left: 50%; width: 4px; height: 8px; margin-left: -2px; background: var(--blue-soft); border-radius: 2px; animation: scrollcue 1.8s ease infinite; } @keyframes scrollcue { 0% { opacity: 1; transform: translateY(0); } 70% { opacity: 0; transform: translateY(10px); } 100% { opacity: 0; } } @media (max-width: 900px) { .hero__grid { grid-template-columns: 1fr; } .hero__visual { max-width: 340px; margin-inline: auto; order: -1; } .hero__stats { grid-template-columns: repeat(2, auto); row-gap: 24px; } } /* =========================== Marquee =========================== */ .marquee { padding-block: 28px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; background: linear-gradient(90deg, rgba(77,127,255,0.03), rgba(255,79,216,0.03)); } .marquee__track { display: flex; width: max-content; gap: 28px; animation: marquee 32s linear infinite; font-family: var(--ff-display); font-size: 0.95rem; letter-spacing: 0.03em; color: var(--chrome-dim); white-space: nowrap; } .marquee__track span:nth-child(2n) { color: var(--violet); } @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } } /* =========================== Cards / Services =========================== */ .cards { display: grid; gap: 28px; } .cards--3 { grid-template-columns: repeat(3, 1fr); } .card { position: relative; padding: 36px 30px; border-radius: var(--radius-lg); background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.01)); border: 1px solid var(--border); backdrop-filter: blur(10px); transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease; overflow: hidden; } .card::before { content: ""; position: absolute; inset: 0; background: var(--grad-brand-soft); opacity: 0; transition: opacity 0.35s ease; z-index: -1; } .card:hover { transform: translateY(-8px); border-color: var(--border-hi); box-shadow: var(--shadow-glow); } .card:hover::before { opacity: 1; } .card__icon { width: 54px; height: 54px; display: flex; align-items: center; justify-content: center; border-radius: 14px; margin-bottom: 22px; background: var(--grad-brand); color: #fff; box-shadow: 0 8px 24px rgba(107,100,255,0.35); } .card h3 { font-size: 1.35rem; margin-bottom: 12px; } .card p { margin-bottom: 20px; } .card__list { display: flex; flex-direction: column; gap: 10px; } .card__list li { font-size: 0.9rem; color: var(--text-mid); padding-left: 20px; position: relative; } .card__list li::before { content: ""; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; border-radius: 50%; background: var(--grad-brand); } @media (max-width: 900px) { .cards--3 { grid-template-columns: 1fr; } } /* =========================== About =========================== */ .about__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 64px; align-items: center; } .about__visual { display: flex; justify-content: center; } .about__frame { position: relative; width: 100%; max-width: 380px; aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; } .about__orbit { position: absolute; inset: 0; border-radius: 50%; border: 1px dashed var(--border-hi); animation: spin 40s linear infinite; } .about__orbit::before, .about__orbit::after { content: ""; position: absolute; width: 10px; height: 10px; border-radius: 50%; background: var(--grad-brand); box-shadow: 0 0 16px var(--magenta); } .about__orbit::before { top: -5px; left: calc(50% - 5px); } .about__orbit::after { bottom: 10%; right: 4%; } .about__mark { width: 68%; filter: drop-shadow(0 16px 40px rgba(107,100,255,0.4)); } .feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 40px; } .feature { display: flex; gap: 16px; } .feature__icon { font-family: var(--ff-display); font-weight: 700; font-size: 0.85rem; color: var(--blue-soft); border: 1px solid var(--border); border-radius: 10px; width: 38px; height: 38px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; } .feature h4 { font-size: 1.02rem; margin-bottom: 6px; } .feature p { font-size: 0.92rem; } @media (max-width: 900px) { .about__grid { grid-template-columns: 1fr; } .feature-grid { grid-template-columns: 1fr; } } /* =========================== Process / Timeline =========================== */ .timeline { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; } .timeline__line { position: absolute; top: 27px; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--border-hi) 10%, var(--border-hi) 90%, transparent); } .timeline__step { position: relative; padding-top: 74px; } .timeline__marker { position: absolute; top: 0; left: 0; width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--ff-display); font-weight: 700; background: var(--bg-panel); border: 1px solid var(--border-hi); color: var(--text-hi); box-shadow: 0 0 0 6px var(--bg-void), 0 0 24px rgba(107,100,255,0.35); } .timeline__step h3 { font-size: 1.15rem; margin-bottom: 10px; } .timeline__step p { font-size: 0.92rem; } @media (max-width: 900px) { .timeline { grid-template-columns: 1fr; gap: 40px; } .timeline__line { top: 0; bottom: 0; left: 27px; right: auto; width: 1px; height: auto; background: linear-gradient(180deg, transparent, var(--border-hi) 10%, var(--border-hi) 90%, transparent); } } /* =========================== Work / Portfolio =========================== */ .work__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; } .work__card { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border); background: var(--bg-panel); transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease; } .work__card:hover { transform: translateY(-6px); border-color: var(--border-hi); box-shadow: var(--shadow-glow); } .work__thumb { aspect-ratio: 4/3; position: relative; display: flex; align-items: flex-end; padding: 16px; background-size: 200% 200%; animation: gradientshift 10s ease infinite; } .work__thumb--1 { background-image: linear-gradient(135deg, #1c2b6b, #6f3dd6); } .work__thumb--2 { background-image: linear-gradient(135deg, #21306e, #d24fc9); } .work__thumb--3 { background-image: linear-gradient(135deg, #142457, #3d7dff); } .work__thumb--4 { background-image: linear-gradient(135deg, #3a1f66, #ff4fd8); } .work__thumb--5 { background-image: linear-gradient(135deg, #101d45, #4d7fff, #9b5cff); } .work__thumb--6 { background-image: linear-gradient(135deg, #26134f, #6f3dd6, #ff4fd8); } @keyframes gradientshift { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } } .work__tag { font-family: var(--ff-display); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; padding: 6px 14px; border-radius: 999px; background: rgba(5, 7, 15, 0.45); backdrop-filter: blur(6px); color: #fff; border: 1px solid rgba(255,255,255,0.2); } .work__meta { padding: 20px 22px 24px; } .work__meta h3 { font-size: 1.05rem; margin-bottom: 4px; } .work__meta p { font-size: 0.88rem; } @media (max-width: 900px) { .work__grid { grid-template-columns: 1fr 1fr; } } @media (max-width: 600px) { .work__grid { grid-template-columns: 1fr; } } /* =========================== Testimonial =========================== */ .testimonial__card { max-width: 780px; margin-inline: auto; text-align: center; padding: 56px 40px; border-radius: var(--radius-lg); border: 1px solid var(--border); background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.01)); } .testimonial__quote { color: var(--violet); margin-bottom: 20px; } .testimonial__text { font-family: var(--ff-display); font-size: 1.4rem; color: var(--text-hi); line-height: 1.5; margin-bottom: 22px; } .testimonial__author { font-size: 0.9rem; color: var(--text-low); } /* =========================== CTA banner / Contact =========================== */ .cta-banner__inner { border-radius: var(--radius-lg); border: 1px solid var(--border); background: radial-gradient(120% 140% at 10% 0%, rgba(77,127,255,0.14), transparent 60%), radial-gradient(120% 140% at 90% 100%, rgba(255,79,216,0.14), transparent 60%), var(--bg-panel); padding: 64px; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; } .cta-banner .section-title { font-size: clamp(1.8rem, 3vw, 2.4rem); } .contact-form { display: flex; flex-direction: column; gap: 20px; } .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; } .form-field { display: flex; flex-direction: column; gap: 8px; position: relative; } .form-field label { font-size: 0.85rem; color: var(--text-mid); font-weight: 500; } .form-field input, .form-field textarea { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 13px 16px; color: var(--text-hi); font-size: 0.95rem; resize: vertical; transition: border-color 0.2s ease, box-shadow 0.2s ease; } .form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--blue-soft); box-shadow: 0 0 0 3px rgba(77,127,255,0.2); } .form-error { display: none; font-size: 0.78rem; color: var(--magenta); } .form-field.has-error input, .form-field.has-error textarea { border-color: var(--magenta); } .form-field.has-error .form-error { display: block; } .form-success { display: none; text-align: center; font-size: 0.92rem; color: var(--blue-soft); background: rgba(77,127,255,0.1); border: 1px solid rgba(77,127,255,0.3); padding: 12px 16px; border-radius: var(--radius-sm); } .form-success.is-visible { display: block; } @media (max-width: 900px) { .cta-banner__inner { grid-template-columns: 1fr; padding: 40px 26px; } } @media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } } /* =========================== Footer =========================== */ .footer { border-top: 1px solid var(--border); padding-top: 72px; background: linear-gradient(180deg, transparent, rgba(77,127,255,0.03)); } .footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 56px; } .footer__brand p { margin-block: 16px; max-width: 32ch; font-size: 0.92rem; } .footer__social { display: flex; gap: 12px; } .footer__social a { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); border-radius: 10px; color: var(--text-mid); transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease; } .footer__social a:hover { border-color: var(--border-hi); color: var(--text-hi); transform: translateY(-2px); } .footer__col { display: flex; flex-direction: column; gap: 12px; } .footer__col h5 { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-low); margin-bottom: 6px; } .footer__col a { font-size: 0.92rem; color: var(--text-mid); transition: color 0.2s ease; } .footer__col a:hover { color: var(--text-hi); } .footer__note { font-size: 0.78rem; color: var(--text-low); font-style: italic; } .footer__bottom { border-top: 1px solid var(--border); padding-block: 24px; display: flex; justify-content: space-between; font-size: 0.82rem; color: var(--text-low); } @media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } } @media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } .footer__bottom { flex-direction: column; gap: 8px; text-align: center; } } /* =========================== Reveal-on-scroll =========================== */ [data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; } [data-reveal].is-visible { opacity: 1; transform: translateY(0); } /* =========================== Mobile nav =========================== */ @media (max-width: 860px) { .nav__toggle { display: flex; } .nav__links { position: fixed; top: 0; right: 0; height: 100vh; width: min(78vw, 320px); background: rgba(8, 11, 24, 0.98); backdrop-filter: blur(20px); border-left: 1px solid var(--border); flex-direction: column; align-items: flex-start; justify-content: center; gap: 28px; padding-inline: 40px; transform: translateX(100%); transition: transform 0.4s ease; z-index: 60; } .nav__links.is-open { transform: translateX(0); } .nav__links a { font-size: 1.15rem; } .nav__actions .btn--sm { display: none; } }