/*
Theme Name: Aristek Coming Soon
Theme URI: https://example.com/aristek-coming-soon
Author: Aristek Consulting
Author URI: https://www.aristekconsulting.com
Description: A single-page coming soon theme for Aristek Consulting with countdown timer and launch messaging.
Version: 1.0.2
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aristek-coming-soon
*/

:root {
  --bg-top: #f5fbff;
  --bg-bottom: #d4ecff;
  --card: #ffffff;
  --text-dark: #071022;
  --text-muted: #5a6474;
  --accent: #1c8dff;
  --accent-soft: #6edbff;
  --border: rgba(7, 16, 34, 0.1);
  --shadow: 0 30px 60px rgba(7, 16, 34, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: radial-gradient(circle at top left, var(--bg-bottom), var(--bg-top) 60%);
  color: var(--text-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.surface {
  position: relative;
  min-height: 100vh;
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.5rem, 4vw, 3.5rem);
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.4;
  pointer-events: none;
}

.orb-one {
  width: 360px;
  height: 360px;
  top: -130px;
  left: -80px;
  background: #c8e7ff;
}

.orb-two {
  width: 500px;
  height: 500px;
  bottom: -220px;
  right: -40px;
  background: #c9f0ff;
}

.container {
  position: relative;
  z-index: 1;
  width: min(1080px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

.block {
  background: var(--card);
  border-radius: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: clamp(1.5rem, 3.5vw, 2.75rem);
}

.site-header {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(0, 1.25fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  background: linear-gradient(135deg, #ffffff, #f2f8ff);
  border: 1px solid rgba(28, 141, 255, 0.12);
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.brand-link {
  display: inline-flex;
  padding: 0.3rem 0.6rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(7, 16, 34, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.brand img {
  width: min(240px, 65vw);
  max-width: 240px;
  height: auto;
}

.header-meta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--text-muted);
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.launch-copy {
  margin: 0;
  font-size: 0.95rem;
}

.contact-card {
  width: 100%;
  padding: 1rem 1.25rem;
  border-radius: 20px;
  border: 1px solid rgba(28, 141, 255, 0.18);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.contact-title {
  margin-bottom: 10px;
  margin-top: 0;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-subtitle {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 600;
}

.contact-links {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-style: normal;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex: 0 1 auto;
  min-width: 0;
  white-space: nowrap;
  padding: 0.35rem 0.9rem 0.35rem 0.35rem;
  border-radius: 999px;
  border: 1px solid rgba(28, 141, 255, 0.18);
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.contact-link:focus,
.contact-link:hover {
  border-color: rgba(28, 141, 255, 0.4);
  box-shadow: 0 5px 15px rgba(28, 141, 255, 0.18);
}

.contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(28, 141, 255, 0.12);
  color: var(--accent);
}

.contact-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(28, 141, 255, 0.12);
  color: var(--accent);
  border: 1px solid rgba(28, 141, 255, 0.2);
}

main {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: stretch;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  min-height: 100%;
}

.hero-text .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.hero-text h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.3rem, 5vw, 3.4rem);
  line-height: 1.15;
}

.hero-text p {
  margin: 0 0 1.2rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.countdown-card {
  background: linear-gradient(165deg, #ffffff, #ebf7ff);
  border-radius: 24px;
  border: 1px solid rgba(28, 141, 255, 0.15);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), var(--shadow);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.launch-label {
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0;
}

.countdown-card h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.3rem);
}

.timer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(70px, 1fr));
  gap: 0.75rem;
}

.timer-segment {
  border-radius: 20px;
  background: #fff;
  padding: 1rem;
  text-align: center;
  border: 1px solid rgba(7, 16, 34, 0.06);
}

.segment-value {
  display: block;
  font-size: 2rem;
  font-weight: 600;
}

.segment-label {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.launch-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.highlight h3 {
  margin: 0 0 1rem;
  font-size: 1.5rem;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.info-card {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  border: 1px solid rgba(7, 16, 34, 0.06);
  padding: 1.25rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.info-card h4 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.info-card p {
  margin: 0;
  color: var(--text-muted);
}

.site-footer {
  padding: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
}

@media (max-width: 640px) {
  .timer-grid {
    grid-template-columns: repeat(2, minmax(100px, 1fr));
  }

  .site-header {
    grid-template-columns: 1fr;
  }

  .meta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-links {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0.5rem;
  }

  .contact-link {
    width: 100%;
    min-width: 0;
  }

  .hero-text {
    justify-content: flex-start;
  }
}
