/* Orot Energy | Coming soon
   All assets are local. No frameworks, JavaScript, web fonts or CDN requests.
   The background photo is a separate image; all text below is selectable HTML.
*/

:root {
  color-scheme: dark;
  --page-bg: #173c57;
  --brand-green: #a8d33e;
  --text: #fff;
  --text-soft: #f0f4f7;
  --content-width: 960px;
  --logo-width: 310px;
}

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

html {
  min-width: 280px;
  min-height: 100%;
  background: var(--page-bg);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 280px;
  color: var(--text);
  background: var(--page-bg);
  font-family: "Assistant", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.coming-soon {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
}

.scene,
.scene-shade {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.scene img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.scene-shade {
  z-index: 1;
  background:
    radial-gradient(ellipse at 50% 41%, rgba(7, 28, 47, .13), transparent 68%),
    linear-gradient(180deg, rgba(8, 29, 47, .06) 0%, rgba(8, 29, 47, .05) 45%, rgba(5, 25, 43, .30) 100%);
}

.hero {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  min-width: 0;
  padding: clamp(40px, 6vh, 76px) 32px clamp(44px, 7vh, 86px);
  padding-right: max(32px, env(safe-area-inset-right));
  padding-left: max(32px, env(safe-area-inset-left));
}

.hero-content {
  width: min(100%, var(--content-width));
  min-width: 0;
  margin-inline: auto;
  text-align: center;
}

.brand {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
  background: transparent;
}

.brand-logo {
  display: block;
  width: var(--logo-width);
  max-width: 100%;
  height: auto;
  border: 0;
}

.accent {
  width: 78px;
  height: 5px;
  margin: 36px auto 32px;
  border-radius: 20px;
  background: var(--brand-green);
}

h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(46px, 4.5vw, 78px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.6px;
  text-shadow: 0 2px 14px rgba(0, 17, 31, .18);
}

h1 span { display: block; }
h1 span + span { margin-top: 6px; }

.intro {
  max-width: 740px;
  margin: 26px auto 0;
  color: var(--text-soft);
  font-size: clamp(20px, 1.6vw, 25px);
  line-height: 1.65;
  text-shadow: 0 1px 8px rgba(0, 17, 31, .18);
  overflow-wrap: break-word;
}

.intro p { margin: 0; }
.intro p + p { margin-top: 5px; }

.page-footer {
  position: relative;
  z-index: 2;
  padding: 0 20px max(24px, env(safe-area-inset-bottom));
  text-align: center;
  color: rgba(255, 255, 255, .84);
}

.page-footer small { font-size: 12px; line-height: 1.5; }

/* Portrait tablets retain the same genuinely centered composition. */
@media (max-width: 1000px) and (min-width: 601px) {
  :root { --logo-width: 290px; }
  .scene img { object-position: 26% 50%; }
  h1 { font-size: clamp(46px, 6.8vw, 65px); }
  .intro { font-size: 21px; }
}

/* Phones: dedicated local crop keeps the main tower to the left. */
@media (max-width: 600px) {
  :root { --logo-width: 255px; }
  .hero {
    padding: 36px 22px 42px;
    padding-right: max(22px, env(safe-area-inset-right));
    padding-left: max(22px, env(safe-area-inset-left));
  }
  .scene img { object-position: 50% 50%; }
  .scene-shade {
    background: linear-gradient(180deg,
      rgba(5, 25, 42, .12) 0%,
      rgba(5, 25, 42, .24) 38%,
      rgba(5, 25, 42, .42) 74%,
      rgba(5, 25, 42, .50) 100%);
  }
  .accent { width: 62px; height: 4px; margin: 28px auto 26px; }
  h1 { font-size: clamp(31px, 8.7vw, 46px); line-height: 1.18; letter-spacing: 0; }
  h1 span + span { margin-top: 5px; }
  .intro { max-width: 390px; margin-top: 22px; font-size: 18px; line-height: 1.75; }
  .intro p + p { margin-top: 5px; }
  .page-footer { padding-bottom: max(20px, env(safe-area-inset-bottom)); }
  .page-footer small { font-size: 11px; }
}

@media (max-width: 360px) {
  :root { --logo-width: 230px; }
  .hero { padding-inline: 18px; }
  h1 { font-size: 30px; }
  .intro { font-size: 16.5px; }
}

/* Short laptop windows and landscape tablets. No fixed-height clipping. */
@media (min-width: 601px) and (max-height: 740px) {
  :root { --logo-width: 245px; }
  .hero { padding-top: 28px; padding-bottom: 30px; }
  .accent { margin-top: 24px; margin-bottom: 23px; }
  h1 { font-size: clamp(42px, 4.2vw, 60px); }
  .intro { margin-top: 20px; font-size: 20px; }
  .page-footer { padding-bottom: 18px; }
}

/* Landscape phones: keep every element visible, still centered. */
@media (max-height: 500px) and (orientation: landscape) {
  :root { --logo-width: 132px; }
  .hero { padding: 20px 24px 18px; }
  .accent { width: 48px; height: 3px; margin: 13px auto 14px; }
  h1 { font-size: 34px; line-height: 1.08; }
  h1 span + span { margin-top: 2px; }
  .intro { margin-top: 14px; font-size: 16px; line-height: 1.45; }
  .intro p + p { margin-top: 2px; }
  .page-footer { padding-bottom: 12px; }
  .page-footer small { font-size: 10px; }
}

@media print {
  .coming-soon { min-height: 0; }
  .scene, .scene-shade { display: none; }
  body, .coming-soon { color: #153449; background: #fff; }
  .hero { padding: 30px; }
  h1, .intro, .page-footer { color: #153449; text-shadow: none; }
}
