39865-vm/index.php
Flatlogic Bot d5ac0af598 beta
2026-05-01 21:45:54 +00:00

214 lines
9.3 KiB
PHP

<?php
declare(strict_types=1);
require_once __DIR__ . '/includes/site.php';
$pageTitle = 'Premium software engineering for ambitious product teams';
$pageDescription = 'A high-end technology company website focused on custom software delivery, platform modernization, and AI workflows.';
$activeNav = 'home';
$featuredStudies = featured_case_studies();
$featuredInsights = featured_insights();
require __DIR__ . '/partials/header.php';
?>
<main>
<section class="hero-section section-shell border-bottom">
<div class="container">
<div class="row align-items-center g-5">
<div class="col-lg-7">
<span class="eyebrow">Software engineering partner for high-stakes digital products</span>
<h1 class="hero-title">Build serious software with a team that thinks like owners.</h1>
<p class="hero-copy">We help founders, product teams, and enterprise leaders design, build, and modernize software that needs to move with confidence. Strategy, delivery, and communication stay crisp from day one.</p>
<div class="d-flex flex-wrap gap-3 pt-2">
<a class="btn btn-primary btn-lg" href="/contact.php">Request a proposal</a>
<a class="btn btn-outline-dark btn-lg" href="/work.php">Review case studies</a>
</div>
<div class="hero-proof d-flex flex-wrap gap-3 mt-4">
<span>Senior-only delivery pods</span>
<span>Launch-focused roadmaps</span>
<span>Calm stakeholder communication</span>
</div>
</div>
<div class="col-lg-5">
<div class="surface-panel hero-panel h-100">
<div class="panel-label">Delivery snapshot</div>
<div class="panel-heading">How we structure the first 30 days</div>
<div class="panel-stack">
<div class="panel-item">
<span>Week 1</span>
<strong>Commercial and technical discovery</strong>
</div>
<div class="panel-item">
<span>Week 2</span>
<strong>Decision-ready roadmap and solution direction</strong>
</div>
<div class="panel-item">
<span>Week 3</span>
<strong>Design, architecture, and delivery sprint setup</strong>
</div>
<div class="panel-item">
<span>Week 4</span>
<strong>Production-ready build cadence with reporting</strong>
</div>
</div>
<div class="hero-note">Designed for teams that need a premium execution partner — not more noise.</div>
</div>
</div>
</div>
<div class="row g-3 stats-row">
<?php foreach (home_stats() as $stat): ?>
<div class="col-6 col-lg-3">
<div class="metric-card h-100">
<strong><?= htmlspecialchars($stat['value']) ?></strong>
<span><?= htmlspecialchars($stat['label']) ?></span>
</div>
</div>
<?php endforeach; ?>
</div>
</div>
</section>
<section class="section-shell border-bottom" id="services">
<div class="container">
<div class="section-heading-row row g-4 align-items-end">
<div class="col-lg-7">
<span class="eyebrow">Services</span>
<h2 class="section-title">A compact service mix built for momentum, quality, and commercial clarity.</h2>
</div>
<div class="col-lg-5">
<p class="section-copy mb-0">Whether you need a new product, a cleaner architecture, or a more resilient operating system, we focus on the smallest move that creates durable leverage.</p>
</div>
</div>
<div class="row g-4 mt-1">
<?php foreach (service_catalog() as $service): ?>
<div class="col-md-6 col-xl-3 d-flex">
<article class="service-card h-100 w-100">
<span class="service-badge"><?= htmlspecialchars($service['badge']) ?></span>
<h3><?= htmlspecialchars($service['title']) ?></h3>
<p><?= htmlspecialchars($service['summary']) ?></p>
<ul class="list-unstyled service-points mb-0">
<?php foreach ($service['points'] as $point): ?>
<li><?= htmlspecialchars($point) ?></li>
<?php endforeach; ?>
</ul>
</article>
</div>
<?php endforeach; ?>
</div>
</div>
</section>
<section class="section-shell border-bottom">
<div class="container">
<div class="row g-4 align-items-start">
<div class="col-lg-5">
<span class="eyebrow">How we work</span>
<h2 class="section-title">High-trust delivery for teams that care about both craft and decision speed.</h2>
<p class="section-copy">We combine strategic clarity with hands-on execution so leadership gets confidence without needing to chase updates.</p>
<div class="surface-panel compact-panel mt-4">
<div class="panel-label">Why teams bring us in</div>
<?php foreach (company_principles() as $principle): ?>
<div class="content-row">
<h3><?= htmlspecialchars($principle['title']) ?></h3>
<p><?= htmlspecialchars($principle['body']) ?></p>
</div>
<?php endforeach; ?>
</div>
</div>
<div class="col-lg-7">
<div class="process-grid">
<?php foreach (process_steps() as $index => $step): ?>
<article class="process-card">
<span class="process-index">0<?= $index + 1 ?></span>
<h3><?= htmlspecialchars($step['title']) ?></h3>
<p><?= htmlspecialchars($step['body']) ?></p>
</article>
<?php endforeach; ?>
</div>
</div>
</div>
</div>
</section>
<section class="section-shell border-bottom">
<div class="container">
<div class="section-heading-row row g-4 align-items-end">
<div class="col-lg-7">
<span class="eyebrow">Representative work</span>
<h2 class="section-title">Selected engagements that show how we approach product, platform, and operations problems.</h2>
</div>
<div class="col-lg-5 text-lg-end">
<a class="btn btn-outline-dark" href="/work.php">View all case studies</a>
</div>
</div>
<div class="row g-4 mt-1">
<?php foreach ($featuredStudies as $study): ?>
<div class="col-lg-4 d-flex">
<article class="case-study-card h-100 w-100">
<div class="card-topline">
<span><?= htmlspecialchars($study['sector']) ?></span>
<span><?= htmlspecialchars($study['timeline']) ?></span>
</div>
<h3><?= htmlspecialchars($study['title']) ?></h3>
<p><?= htmlspecialchars($study['summary']) ?></p>
<div class="result-pills">
<?php foreach ($study['results'] as $result): ?>
<span><?= htmlspecialchars($result['value']) ?> · <?= htmlspecialchars($result['label']) ?></span>
<?php endforeach; ?>
</div>
<a class="text-link mt-auto" href="/case-study.php?slug=<?= urlencode($study['slug']) ?>">Read case study</a>
</article>
</div>
<?php endforeach; ?>
</div>
</div>
</section>
<section class="section-shell border-bottom">
<div class="container">
<div class="section-heading-row row g-4 align-items-end">
<div class="col-lg-7">
<span class="eyebrow">Insights</span>
<h2 class="section-title">Editorial thinking for teams planning their next software move.</h2>
</div>
<div class="col-lg-5 text-lg-end">
<a class="btn btn-outline-dark" href="/insights.php">Browse insights</a>
</div>
</div>
<div class="row g-4 mt-1">
<?php foreach ($featuredInsights as $article): ?>
<div class="col-lg-4 d-flex">
<article class="insight-card h-100 w-100">
<div class="card-topline">
<span><?= htmlspecialchars($article['category']) ?></span>
<span><?= htmlspecialchars($article['read_time']) ?></span>
</div>
<h3><?= htmlspecialchars($article['title']) ?></h3>
<p><?= htmlspecialchars($article['excerpt']) ?></p>
<a class="text-link mt-auto" href="/insight.php?slug=<?= urlencode($article['slug']) ?>">Read article</a>
</article>
</div>
<?php endforeach; ?>
</div>
</div>
</section>
<section class="section-shell">
<div class="container">
<div class="cta-panel">
<div>
<span class="eyebrow">Start the conversation</span>
<h2 class="section-title mb-2">Need a team that can turn ambiguity into a clear execution plan?</h2>
<p class="section-copy mb-0">Send a short brief and we will shape the next steps around your business context, not a generic process.</p>
</div>
<div class="d-flex flex-wrap gap-3 justify-content-lg-end">
<a class="btn btn-primary btn-lg" href="/contact.php">Start a project brief</a>
<a class="btn btn-outline-dark btn-lg" href="/insights.php">Read our thinking</a>
</div>
</div>
</div>
</section>
</main>
<?php require __DIR__ . '/partials/footer.php'; ?>